git-svn-id: https://192.168.0.254/svn/Proyectos.AlonsoYSal_FactuGES2/trunk@38 40301925-124e-1c4e-b97d-170ad7a8785b
23 lines
567 B
ObjectPascal
23 lines
567 B
ObjectPascal
unit uIEditorContratosClientePreview;
|
|
|
|
interface
|
|
|
|
uses
|
|
uEditorPreview;
|
|
|
|
type
|
|
IEditorContratosClientePreview = interface(IEditorPreview)
|
|
['{475D47DE-2A04-4D85-9D3C-6201B7EF2F29}']
|
|
function getTamLetra: Integer;
|
|
function getVerCondiciones: Boolean;
|
|
procedure setTamLetra(const Value: Integer);
|
|
procedure setVerCodiciones(const Value: Boolean);
|
|
property Vercondiciones: Boolean read getVerCondiciones write setVerCodiciones;
|
|
property TamLetra: Integer read getTamLetra write setTamLetra;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|