ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
  • Example 1: Send a control to the back
  • Example 2: Move the layer of a control in relation to another one
Example 1: Send a control to the back
Windows The following code sends the button to the back.
// Sends a control to the back
BTN_BUTTON1.ZOrder = 1
Example 2: Move the layer of a control in relation to another one
Windows An image and a button overlap. To display the image behind or in front of the button, simply use the ZOrder property.
// Displays the button in front of the image
BTN_BUTTON1.ZOrder = IMG_IMAGE1.ZOrder + 1
// Displays the button behind the image
BTN_BUTTON1.ZOrder = IMG_IMAGE1.ZOrder
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/08/2023

Send a report | Local help