Click or drag to resize
SplitterItemsCollection Class
A collection of SplitterItem objects in a KaxSplitter control.
Inheritance Hierarchy
SystemObject
  System.Web.UIControlCollection
    Kettic.AspNet.ControlsSplitterItemsCollection

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public class SplitterItemsCollection : ControlCollection, 
	IStateManager

The SplitterItemsCollection type exposes the following members.

Constructors
  NameDescription
Public methodSplitterItemsCollection
Initializes a new instance of the SplitterItemsCollection class.
Top
Methods
  NameDescription
Public methodClear
Removes all items from the collection.
Public methodInsert
Inserts the specified SplitterItem in the collection at the specified index location.
Public methodRemoveAt
Removes the SplitterItem at the specified index from the collection.
Top
Properties
  NameDescription
Public propertyItem

Gets a SplitterItem at the specified index in the collection.

Top
Remarks

The SplitterItemsCollection class represents a collection of SplitterItem objects. The SplitterItem objects in turn represent panes items within a KaxSplitter control.

  • Use the indexer to programmatically retrieve a single SplitterItem from the collection, using array notation.
  • Use the Count property to determine the total number of panes in the collection.
  • Use the Add method to add panes in the collection.
  • Use the Remove method to remove panes from the collection.
See Also