1 Property
2 Keyword Defines controlled access to class fields System unit
3 ?1.Property Name : Type read Getter|nodefault;
4 ?2.Property Name : Type write Setter;
5 ?3.Property Name : Type read Getter write Setter;
6 ?4.Property Name : Type Index Constant read Getter {default : Constant|nodefault;} {stored : Boolean};
7 ?5.Property Name : Type Index Constant write Setter {default : Constant|nodefault;} {stored : Boolean};
8 ?6.Property Name : Type Index Constant read Getter write Setter {default : Constant|nodefault;} {stored : Boolean};
9 ?7.Property Name[Index : IndexType] : BaseType read Getter {default;}
10 ?8.Property Name[Index : IndexType] : BaseType write Setter; {default;}
11 ?9.Property Name[Index : IndexType] : BaseType read Getter write Setter; {default;}
12 10.Property Name : Type read Getter implements Interfaces...;
13 11.Property Name; // Redeclared base class property
14 12.Property Name : Type; // Dispinterface only
15 13.Property Name : Type readonly; // Dispinterface only
16 14.Property Name : Type writeonly; // Dispinterface only
作者:疯狂Delphi
出处:https://www.cnblogs.com/FKdelphi/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.
来源:https://www.cnblogs.com/FKdelphi/p/10836623.html