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

TdxCustomLayoutControl.AvailableItems Property

Provides indexed access to the layout control’s temporarily hidden elements.

#Declaration

Delphi
property AvailableItems[Index: Integer]: TdxCustomLayoutItem read;

#Property Value

Type
TdxCustomLayoutItem

#Remarks

Use this property to access a specific “available” item of the ExpressLayout Control. This item index is specified by the Index parameter. “Available” item means that this item was created within the Customization Form, but was not placed within the control itself. After item creation every group or item represents an “available” item.

In order to create an “available” item at runtime use the CreateItem or CreateGroup methods of the TdxLayoutControl object. You can use the AvailableItemCount property to obtain the total number of all ExpressLayout Control “available” items.

See Also