27 lines
704 B
ObjectPascal
27 lines
704 B
ObjectPascal
|
|
unit uIEditorElegirEpigrafes;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
uIEditorEpigrafes, uBizEpigrafes, uGUIBase;
|
||
|
|
|
||
|
|
type
|
||
|
|
IEditorElegirEpigrafes = interface(IEditorEpigrafes)
|
||
|
|
['{12716994-A11A-4C05-973B-652468B859D9}']
|
||
|
|
function GetEpigrafesSeleccionados: IBizEpigrafe;
|
||
|
|
property EpigrafesSeleccionados: IBizEpigrafe read GetEpigrafesSeleccionados;
|
||
|
|
|
||
|
|
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.
|