Interface ISplitItem
Represents an object that can be the item of a SplitContainer.
Namespace: Telerik.Windows.Controls.Docking
Assembly: Telerik.Windows.Controls.Docking.dll
Syntax
public interface ISplitItem
Remarks
This interface is intended for internal use.
Properties
Control
Gets the actual control that will be a visual child of the SplitContainer.
Declaration
Control Control { get; }
Property Value
System.Windows.Controls.Control
|
ParentContainer
Gets or sets the SplitContainer that holds the item.
Declaration
RadSplitContainer ParentContainer { get; }
Property Value
RadSplitContainer
|
Methods
EnumeratePanes()
Enumerates the panes contained by the split item and its children.
Declaration
IEnumerable<RadPane> EnumeratePanes()
Returns
System.Collections.Generic.IEnumerable<RadPane>
|