Back to Devexpress

TcxPropertyAttribute Enum

vcl-cxoi-8f2b22fa.md

latest1.7 KB
Original Source

TcxPropertyAttribute Enum

Specifies the edited property attributes.

Declaration

delphi
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 appropriateGetAttributes method of the bound to the edited property TcxPropertyEditor derived editor.

FlagDescription
ipaValueListThe editor can give a list of enumerated values.
ipaSubPropertiesThe property has subproperties that can be displayed.
ipaDialogThe editor can display a dialog box for editing the property.
ipaMultiSelectThe property is available when the user selects more than one inspected component.
ipaAutoUpdateThe inspected component is updated after every change instead of waiting for approval of the value.
ipaSortListThe value list should be sorted.
ipaReadOnlyUsers cannot modify the property value.
ipaRevertableEnables 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

cxOI Unit