ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
  • Horizontal alignment
  • Limitations
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
Vertical alignment determines how the text is positioned relative to the borders of the control. This allows you to center the content of an Edit control in relation to the borders of the input area.
There are three types of alignment:
  • Align top
    Top-aligned text
  • Align middle
    Middle-aligned text
  • Align bottom
    Bottom-aligned text
The VerticalAlignment property gets and changes the vertical alignment of a control.
The initial alignment is defined in the control description.
Example
// If the control is aligned to top, align it at bottom
IF STC_Static.VerticalAlignment = vaTop THEN
STC_Static.VerticalAlignment = vaBottom
END
Syntax

Getting the vertical alignment of a control Hide the details

<Current alignment> = <Control used>.VerticalAlignment
<Current alignment>: Integer constant
Current vertical alignment of the control. The possible values are as follows:
vaBottomthe text is located at the bottom of the control
vaMiddlethe text is located in the middle of the control
vaTopthe text is located at the top of the control

<Control used>: Control name
Name of the control to be used.

Changing the vertical alignment of a control Hide the details

<Control used>.VerticalAlignment = <New alignment>
<Control used>: Control name
Name of the control to be used.
<New alignment>: Integer constant
New alignment of the control. The possible values are:
vaBottomthe text is located at the bottom of the control
vaMiddlethe text is located in the middle of the control
vaTopthe text is located at the top of the control

Remarks

Horizontal alignment

To define the horizontal alignment of the control, use the HorizontalAlignment property.

Limitations

Reports and Queries In a report, the VerticalAlignment property gets and changes the vertical alignment for the following types of controls:
  • Static control.
  • Calculated control.
  • Preset control.
  • Chart control.
  • Group of controls: This property will only apply to controls that support vertical alignment.

Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/04/2024

Send a report | Local help