aspnet-devexpress-dot-web-dot-aspxsplitter.md
Gets a collection that contains the pane of the splitter’s root level.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public SplitterPaneCollection Panes { get; }
Public ReadOnly Property Panes As SplitterPaneCollection
| Type | Description |
|---|---|
| SplitterPaneCollection |
A SplitterPaneCollection that contains the root level panes of the current splitter control.
|
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.
See Also