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

TdxCustomDockControl.SideContainerItem Property

Returns the dock control that owns it and is the immediate child of a side container.

#Declaration

Delphi
property SideContainerItem: TdxCustomDockControl read;

#Property Value

Type
TdxCustomDockControl

#Remarks

If the dock control’s immediate parent is a side container, the SideContainerItem returns the dock control itself. If the control’s parent is a tab container within a side container, the SideContainerItem returns the owning tab container.

Actually, the control returned by the SideContainerItem can also be obtained by reading the Children property value of the side container returned by the SideContainer property. The value of the SideContainerIndex property must be passed to the Children property as the parameter. Thus, the SideContainerItem property just simplifies the access.

See Also