ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
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
The AutoLineWrap property is used to:
  • determine if the automatic line wrap feature is enabled in a multiline Edit control, in a column of a Table or TreeView control or in a row header of a Pivot Table control.
  • set the line wrap mode in a multiline Edit control, in a column of a Table or TreeView control or in a row header of a Pivot Table control.
Example
// Modify the "Automatic line wrap" Check Box
EDT_MultilineText.AutoLineWrap = CBOX_AutoWrap
Syntax

Finding out whether the line wrap is automatically supported Hide the details

<Result> = <Control used>.AutoLineWrap
<Result>: Boolean
  • True if the automatic line wrap is enabled,
  • False otherwise.
<Control used>: Control name
Name of the control to be used:
  • Multiline edit control,
  • Column in a Table or TreeView Table control.
  • Pivot Table control.

Setting the line wrap mode Hide the details

<Control used>.AutoLineWrap = <Line wrap management>
<Control used>: Control name
Name of the control to be used:
  • Multiline edit control,
  • Column in a Table or TreeView Table control.
  • Pivot Table control.
<Line wrap management>: Boolean
  • True to enable the automatic line wrap on the control,
  • False to disable the automatic line wrap on the control.
Remarks
  • If the AutoLineWrap property is set to False, overflowing lines can be scrolled horizontally (with or without a visible scrollbar depending on the Edit control settings).
  • If the AutoLineWrap property is set to True, overflowing lines are split on several lines.
  • This property has no effect on a RTF control, HTML control or non-multiline edit control.
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/02/2022

Send a report | Local help