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 SelectionDirection property is used to determine and change the selection direction (left to right or right to left) in a Word Processing control.
Example
T is int = 30
FOR I = WP_MyDoc.Cursor _TO_ WP_MyDoc.Cursor + WP_MyDoc.SelectionLength
f is docFragment = WP_MyDoc[I ON 1]
f.Style.FontSize = T
IF WP_MyDoc.SelectionDirection = 1 THEN
T += 5
ELSE
T -= 5
END
END
Syntax

Finding out the selection direction in a Word Processing control Hide the details

<Result> = <Word Processing control>.SelectionDirection
<Result>: Integer
Selection direction:
  • 1: The selection was performed according to the writing direction (left to right).
  • 2: The selection was performed in reverse order of writing direction (right to left).
<Word Processing control>: Control name
Name of the Word Processing control to use.

Modifying the selection direction in a Word Processing control Hide the details

<Word Processing control>.SelectionDirection = <New value>
<Word Processing control>: Control name
Name of the Word Processing control to use.
<New value>: Integer
New selection direction:
  • 1: The selection was performed according to the writing direction (left to right).
  • 2: The selection was performed in reverse order of writing direction (right to left).
Minimum version required
  • Version 22
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help