Skip to main content
A newer version of this page is available. .
Tab

SplitterPaneCollection Class

Represents a collection of panes.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public class SplitterPaneCollection :
    HierarchicalCollection<SplitterPane>

The following members return SplitterPaneCollection objects:

Remarks

The ASPxSplitter control holds its panes within a collection, represented by an instance of the SplitterPaneCollection class and can be accessed via the ASPxSplitter.Panes property. In addition, each pane provides the SplitterPane.Panes property of the SplitterPaneCollection type, to maintain a collection of child panes.

The properties and methods exposed by the SplitterPaneCollection class can be used to perform common collection operations, such as adding new or deleting existing panes. Each item of the collection is represented by a SplitterPane object. Individual panes can be accessed using indexer notation, by their names or visible indexes, using the specific methods of the collection.

See Also