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

ASPxClientSplitterPane.GetPaneByName(name) Method

Returns the current pane’s child 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 current pane’s child pane with the specified name.

Remarks

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

This method searches for the specified pane amongst all child panes of the current pane (throughout all child sub panes of the pane). Note that if an invalid name is passed via the parameter, this method returns null.

In order to access a particular pane specified by its name from the splitter control level, the splitter’s ASPxClientSplitter.GetPaneByName method can be used.

See Also