Skip to content

DXDockPanel

DevExpress DXDockPanel.

UI element class: regex:DevExpress.XtraBars.Docking.DockPanel

Extends ManagedObject

Extends SeSSimulatedObject

Behavior Pattern: DXDockPanelBehavior

Property Summary

Property Description Getter Setter
ItemsCount Number of items. GetItemsCount
PanelName Name of the panel at index GetPanelName
SelectedIndex Index of the selected element of the object. GetSelectedIndex
SelectedPanel Title of the selected panel GetSelectedPanel

Action Summary

Action Description
DoSelectPanel Selects the tab by name.

Property Detail

ItemsCount

Number of items.

Type: number

Accessors: GetItemsCount

value = SeS('SomeDXDockPanel').GetItemsCount()

PanelName

Name of the panel at index

Getter Parameters:

Name Type Description
index

Type: string

Accessors: GetPanelName

value = SeS('SomeDXDockPanel').GetPanelName(/**number*/ index)

SelectedIndex

Index of the selected element of the object.

Type: number

Accessors: GetSelectedIndex

value = SeS('SomeDXDockPanel').GetSelectedIndex()

SelectedPanel

Title of the selected panel

Type: string

Accessors: GetSelectedPanel

value = SeS('SomeDXDockPanel').GetSelectedPanel()

Action Detail

DoSelectPanel

Selects the tab by name.

SeS('SomeDXDockPanel').DoSelectPanel(panelName)

Parameters:

Name Type Description
panelName string Panel name to select

Returns:

boolean: 'true' if success, 'false' otherwise.