有关delphi 中如何自定义属性

2024-11-01 00:19:56
有1个网友回答
网友(1):

一个例子,操作一个int型的属性
type
Tyourclass=class;
private
a:integer;
published
property intnum:integer read a write a;
end;