ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Dockable Panel functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Retrieves the position of a Dockable Panel control.
Example
// Retrieve the position of the Dockable Panel control "DOPA_TEST"
SWITCH DOPA_TEST.Position()
CASE dopaLeft
// The Dockable Panel control is anchored to the left.
CASE dopaRight
// The Dockable Panel control is anchored to the right.
CASE dopaTop
// The Dockable Panel control is anchored to the top.
CASE dopaBottom
// The Dockable Panel control is anchored to the bottom.
CASE dopaFloating
// The control becomes a floating Dockable Panel.
END
// If the Dockable Panel control is on the left, move it to the right
IF DOPA_Test.Position() = dopaLeft THEN
DOPA_Test.Attach(dopaRight)
END
 
// Create a configuration with 2 Dockable Panels at the bottom in the same area
DOPA_Details.Attach(dopaBottom)
DOPA_Info.Attach(PanelPosition(dopaRight))
Syntax
<Result> = <Dockable Panel control>.Position()
<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:
    dopaBottomThe Dockable Panel control is anchored to the bottom
    dopaFloatingThe control becomes a floating Dockable Panel.
    dopaLeftThe Dockable Panel control is anchored to the left.
    dopaRightThe Dockable Panel control is anchored to the right.
    dopaTopThe 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 <Dockable panel>.Attach.
  • If the control is a floating Dockable Panel, its position can be known via the X and Y properties.
Component: wd290obj.dll
Minimum version required
  • Version 27
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/31/2022

Send a report | Local help