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

ASPxClientSplitter.GetPaneByName(name) Method

Returns a pane specified by its name.

Declaration

GetPaneByName(
    name: string
): ASPxClientSplitterPane

Parameters

Name Type Description
name string

A string value specifying the name of the pane.

Returns

Type Description
ASPxClientSplitterPane

An ASPxClientSplitterPane object that represents the pane with the specified name.

Remarks

A splitter control’s client-side functionality allows individual panes to be accessed programmatically. The GetPaneByName method gets a client pane object specified by its name. A pane’s name is defined by the SplitterPane.Name property.

This method searches the specified pane amongst all panes contained in the splitter control (throughout all pane levels). Note that if an invalid name is passed via the parameter, this method returns null.

In order to access a particular pane’s child pane specified by its name, the pane’s ASPxClientSplitterPane.GetPaneByName method can be used.

See Also