Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
Re: Propertys sichtbar
28. Sep 2003, 12:15
Du musst die Properties/Komponenten entsprechend "mappen"
Delphi-Quellcode:
type
TDeinKompo = class(TPanel)
private
.....
FEdit: TEdit;
published
property Edit: TEdit read FEdit;
end;
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|