TdxCustomDockControl.SideContainerItem Property
Returns the dock control that owns it and is the immediate child of a side container.
Declaration
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