|
|
|
|
SysListScreenResolution (Function) In french: SysListeRésolutionEcran Returns the possible resolutions for a screen. // Adds into a table containing 3 columns // the list of available resolutions for the main screen ListAdd(TABLE_Resolution, SysListScreenResolution()) Syntax
<Result> = SysListScreenResolution([<Screen name>])
<Result>: Character string Character string containing the list of available resolutions, empty string ("") if an error occurred. ErrorInfo returns more information on the error.This string has the following format: <Horizontal Resolution 1> + TAB + <Vertical Resolution 1> + TAB + <Number of Bits per Pixels 1> + TAB + <Refresh Frequency> + CR + ... + <Horizontal Resolution N> + TAB + <Vertical Resolution N> + TAB + <Number of Bits per Pixels N> + TAB + <Refresh Frequency N> <Screen name>: Optional character string Name of the screen for which the available resolutions are requested. If this parameter is not specified, the available resolutions are sought for the main screen. If the name of the screen does not exist, <Result> corresponds to an empty string ("").
Related Examples:
|
Unit examples (WINDEV): The system functions (screens)
[ + ] Using the SysXxx functions on the screens in order to get various information: - Retrieve the number of screens installed on the computer - Retrieve the graphic cards installed on the computer - Change the resolution of a screen - ...
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|