git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@1074 0c75b7a4-871f-7646-8a2f-f78d34cc349f
24 lines
543 B
ObjectPascal
24 lines
543 B
ObjectPascal
unit uIEditorAlbaranesClientePreview;
|
|
|
|
interface
|
|
|
|
uses
|
|
uEditorPreview;
|
|
|
|
type
|
|
IEditorAlbaranesClientePreview = interface(IEditorPreview)
|
|
['{F58BF987-28EB-485A-B953-55BDEEBE2C91}']
|
|
procedure SetVerPrecios(const Value: Boolean);
|
|
function GetVerPrecios: Boolean;
|
|
property VerPrecios : Boolean read GetVerPrecios write SetVerPrecios;
|
|
|
|
function GetVerRef: Boolean;
|
|
procedure SetVerRef(const Value: Boolean);
|
|
property VerRef : Boolean read GetVerRef write SetVerRef;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|