TCodeMemberProperty Class
Represents a property declaration within a type.
Syntax
Unit: Bcl.Code.MetaClasses
TCodeMemberProperty = class(TCodeTypeMember);
Constructors
| Name | Description |
|---|---|
| Create | Creates a property with the specified name, type, accessors, and visibility. |
Properties
| Name | Description |
|---|---|
| HasGetter | Indicates whether this property has a getter (read accessor). |
| HasSetter | Indicates whether this property has a setter (write accessor). |
| ReadMember | Gets or sets the name of the read accessor. |
| WriteMember | Gets or sets the name of the write accessor. |
| PropertyType | Gets or sets the type reference for this property. |
| IsStatic | Indicates whether this is a class (static) property. |