TcxPropertyAttribute Enum
Specifies the edited property attributes.
Declaration
TcxPropertyAttribute = (
ipaValueList,
ipaSubProperties,
ipaDialog,
ipaMultiSelect,
ipaAutoUpdate,
ipaSortList,
ipaReadOnly,
ipaRevertable
);
Members
Name |
---|
ipaValueList
|
ipaSubProperties
|
ipaDialog
|
ipaMultiSelect
|
ipaAutoUpdate
|
ipaSortList
|
ipaReadOnly
|
ipaRevertable
|
Remarks
Specifies the edited property attributes. A subset of attributes defined for every type of the edited property is returned by the appropriate GetAttributes method of the bound to the edited property TcxPropertyEditor derived editor.
Flag | Description |
---|---|
ipaValueList | The editor can give a list of enumerated values. |
ipaSubProperties | The property has subproperties that can be displayed. |
ipaDialog | The editor can display a dialog box for editing the property. |
ipaMultiSelect | The property is available when the user selects more than one inspected component. |
ipaAutoUpdate | The inspected component is updated after every change instead of waiting for approval of the value. |
ipaSortList | The value list should be sorted. |
ipaReadOnly | Users cannot modify the property value. |
ipaRevertable | Enables the reverting to the inherited menu item on the runtime object inspector’s context menu. The menu item tells the edited property editor to discard the current property value and return to some previously established default or standard value. |
See Also