ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Drawing functions
  • RGB and code editor
  • Miscellaneous
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Defines a color from its Red, Green and Blue components.
Example
// Coloriage d'une zone en bleu clair
dFill(10, 50, RGB(0, 255, 255))
Syntax
<Result> = RGB(<Red component> , <Green component> , <Blue component>)
<Result>: Integer
Color (24 bits) corresponding to the selected components. This color is the result of the following formula:
Color = 65536 * Blue Component + 256 * Green Component + Red Component.
<Red component>: Integer (from 0 to 255)
Amount of red in the color.
<Green component>: Integer (from 0 to 255)
Amount of green in the color.
<Blue component>: Integer (from 0 to 255)
Amount of blue in the color.
Remarks

RGB and code editor

In the code editor, when the RGB function and its parameters are specified, a square appears automatically, showing the corresponding color:
A click in the colored square is used to open the color picker.
Color picker
If the color is modified, the modification is taken into account when validating the color picker.

Miscellaneous

  • The colors specified with RGB can be modified according to the capacity of the current screen mode (VGA, 32 colors, etc.).
  • Important: When indicating colors, we recommend using the color constants defined in WLanguage (see the preset colors of WLanguage).
Component: wd300std.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/18/2024

Send a report | Local help