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

TcxCustomGridTableItem.VisibleForCustomization Property

Specifies whether an item is shown in the Customization Form when moved into it.

#Declaration

Delphi
property VisibleForCustomization: Boolean read; write;

#Property Value

Type
Boolean

#Remarks

The Customization Form is visible onscreen if the View’s Controller.Customization property is set to True.

To move an item (a row or a column) into the Customization Form, set the item’s Visible property to False. Once it’s in the Customization Form, the item is hidden in a View. If the VisibleForCustomization property is set to False, the item is also hidden in the Customization Form and Quick Column Customization dropdown. As such, it’s unavailable to end-users.

End-users can do one of the following to remove an item from a View:

  • Drag the item’s header into the Customization Form.

  • Uncheck a corresponding item in the Quick Column Customization dropdown.

  • Click the ‘Remove this Column’ item in the column header popup menu.

Set the VisibleForCustomization property to False to prohibit end-users from removing the item using any of the options above. To specify the manner in which items can be hidden, use the View’s OptionsCustomize.ItemHiding property.

Use the AlternateCaption property to customize the item’s caption when it is displayed in the Customization Form or Quick Column Customization dropdown.

See Also