|
|
|
|
|
SysListScreenOrientation (Function) In french: SysListeOrientationEcran Used to find out the possible orientations of a screen on a Mobile Device (Pocket PC).
// Fill the "LIST_Orientations" control with the possibles orientations ListAdd(LIST_Orientations, SysListScreenOrientation())
// Select the current orientation of the screen in the list LIST_Orientations = SysScreenOrientation()
Syntax
<Result> = SysListScreenOrientation()
<Result>: Character string Character string containing the possible orientations, in the following format:
<Orientation 1> + CR + ... + <Orientation N>
Where <Orientation > corresponds to one of the following constants: | | Orient0 | the screen is oriented in the default direction. | Orient90 | the screen is turned around by 90° clockwise. | Orient180 | the screen is upside-down (180°). | Orient270 | the screen is turned 90° clockwise (270°). |
Remarks The change of screen orientation is not supported by all the mobile devices. When this feature is not available, SysListScreenOrientation always returns Orient0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|