TCodeMemberProperty.Create Constructor
Creates a property with the specified name, type, accessors, and visibility.
Syntax
Unit: Bcl.Code.MetaClasses
constructor TCodeMemberProperty.Create(AName: string; AType: string; AReadMember: string; AWriteMember: string; AVisibility: TMemberVisibility);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| AName | string | The property name. | |
| AType | string | The property type name. | |
| AReadMember | string | The name of the read accessor (field or method). | |
| AWriteMember | string | The name of the write accessor (field or method). | |
| AVisibility | TMemberVisibility | The visibility of the property. |