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

MVCxSplitterPaneCollection.Remove(MVCxSplitterPane) Method

Removes a pane object from the collection.

Namespace: DevExpress.Web.Mvc

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

Declaration

public void Remove(
    MVCxSplitterPane pane
)

Parameters

Name Type Description
pane MVCxSplitterPane

A MVCxSplitterPane object specifying the pane to remove from the collection.

Remarks

Use the Remove method to remove the pane specified by the pane parameter from the current collection.

This method performs a linear search, so the average execution time is proportional to Count. Elements that follow the removed element move up to occupy the vacated area. The indexes of the moved elements are updated.

See Also