|
|
|
|
|
PanelPosition (Function) In french: PanneauPosition Retrieves the position of a Dockable Panel control.
SWITCH PanelPosition(PADO_TEST)
CASE dopaLeft
CASE dopaRight
CASE dopaTop
CASE dopaBottom
CASE dopaFloating
END
IF PanelPosition(PADO_Test) = dopaLeft THEN
PanelAttach(PADO_Test, dopaRight)
END
PanelAttach(PADO_Détail, dopaBottom)
PanelAttach(PADO_Infos, PanelPosition(PADO_Détail))
Syntax
<Result> = PanelPosition(<Dockable Panel control>)
<Result>: Character string or constant - Empty string ("") if the Dockable Panel control is a floating panel.
- Position of the Dockable Panel control. Can correspond to one of the following constants or combination of constants:
| | dopaBottom | The Dockable Panel control is anchored to the bottom | dopaFloating | The control becomes a floating Dockable Panel. | dopaLeft | The Dockable Panel control is anchored to the left. | dopaRight | The Dockable Panel control is anchored to the right. | dopaTop | The Dockable Panel control is anchored to the top. |
The constants can be combined.
<Dockable Panel control>: Control name Name of the Dockable Panel control to use. Remarks - The position can be modified using PanelAttach.
- If the control is a floating Dockable Panel, its position can be known via the X and Y properties.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|