
20.05.2010, 20:18
|
 |
Let Me Show You
|
|
Регистрация: 30.04.2010
Адрес: Северодвинск
Сообщения: 5,426
Версия Delphi: 7, XE5
Репутация: 59586
|
|
конструктор!
PHP код:
Tx = class
FPole:TP;
public
procedure re(Value:TP);
constructor Create;
published
property Prop:TP read FPole write re;
end;
constructor Tx.Create;
begin
FPole:=TP.Create;
end;
|