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

SplitterSettings.Panes Property

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

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public MVCxSplitterPaneCollection Panes { get; }

Property Value

Type Description
MVCxSplitterPaneCollection

A MVCxSplitterPaneCollection that contains the root level panes of the Splitter.

Remarks

Use the Panes property to access panes on the Splitter’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 MVCxSplitterPane 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