git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@3 0c75b7a4-871f-7646-8a2f-f78d34cc349f
27 lines
706 B
ObjectPascal
27 lines
706 B
ObjectPascal
unit uIEditorElegirContactos;
|
|
|
|
interface
|
|
|
|
uses
|
|
uIEditorContactos, uBizContactos, uGUIBase;
|
|
|
|
type
|
|
IEditorElegirContactos = interface(IEditorContactos)
|
|
['{4A37A0C7-3CDB-4C36-BCFB-6AE0FFE0138D}']
|
|
function GetContactosSeleccionados: IBizContacto;
|
|
property ContactosSeleccionados: IBizContacto read GetContactosSeleccionados;
|
|
|
|
procedure SetMultiSelect (AValue : Boolean);
|
|
function GetMultiSelect : Boolean;
|
|
property MultiSelect : Boolean read GetMultiSelect write SetMultiSelect;
|
|
|
|
procedure SetMensaje (const AValue: String);
|
|
function GetMensaje: String;
|
|
property Mensaje : String read GetMensaje write SetMensaje;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|