git-svn-id: https://192.168.0.254/svn/Proyectos.AlonsoYSal_FactuGES2/trunk@6 40301925-124e-1c4e-b97d-170ad7a8785b
27 lines
714 B
ObjectPascal
27 lines
714 B
ObjectPascal
unit uIEditorElegirSubCuentas;
|
|
|
|
interface
|
|
|
|
uses
|
|
uIEditorSubCuentas, uBizSubCuentas, uGUIBase;
|
|
|
|
type
|
|
IEditorElegirSubCuentas = interface(IEditorSubCuentas)
|
|
['{4A5003AE-BF4E-466A-9C9D-FECDD69454D2}']
|
|
function GetSubCuentasSeleccionados: IBizSubCuenta;
|
|
property SubCuentasSeleccionados: IBizSubCuenta read GetSubCuentasSeleccionados;
|
|
|
|
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.
|