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

ASPxSplitter.Panes Property

Gets a collection that contains the pane of the splitter’s root level.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public SplitterPaneCollection Panes { get; }

Property Value

Type Description
SplitterPaneCollection

A SplitterPaneCollection that contains the root level panes of the current splitter control.

Remarks

Use the Panes property to access panes on the current splitter control’s root level. To access panes further down the hierarchy tree, use the SplitterPane.Panes property of a subsequent pane. If the Panes property is the null reference (Nothing in Visual Basic), the current splitter does not have any panes.

The Panes property can be also used to programmatically manage the root panes of the current splitter control. You can add, insert, remove, retrieve, and modify SplitterPane objects from the collection. Any updates to the collection will be automatically reflected in the splitter control the next time the page is refreshed.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Panes property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also