Click or drag to resize
SplitterItemsContainerItems Property
Gets the collection of child items in the KaxSplitter control.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public SplitterItemsCollection Items { get; }

Property Value

Type: SplitterItemsCollection
A SplitterItemsCollection that represents the children within the KaxSplitter control. The default is empty collection.
Remarks
Use this property to retrieve the child items of the KaxSplitter control. You can also use it to programmatically add or remove items.
Examples
The following example demonstrates how to programmatically add items.
void Page_Load(object sender, EventArgs e)
{
    if (!Page.IsPostBack)
    {
        KaxPane pane1 = new KaxPane();
        KaxSplitter1.Items.Add(pane1);

        KaxSplitbar splitBar1 = new KaxSplitBar();
        KaxSplitter1.Items.Add(splitBar1);

        KaxPane pane2 = new KaxPane();
        KaxSplitter1.Items.Add(pane2);
    }
}
See Also