Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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 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