|
|
|
|
InVGAMode (Function) In french: EnModeVGA
Not available
Indicates whether the application is run in VGA mode on a mobile device. Remark: This function operates in WINDEV Mobile only (executable or Go in simulator mode).
// If we are in VGA mode IF InVGAMode() = True THEN // Open the window intended for the VGA mode Open(WIN_VGAMode) ELSE // Open the window intended for the non-VGA mode Open(WIN_NonVGAMode) END
Syntax <Result>: Boolean - True if the following conditions are fulfilled:
- the application is run on a VGA mobile.
- the application is run in VGA mode (and not in non-VGA emulation).
- False otherwise.
Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|