ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Miscellaneous WINDEV functions
  • Tip
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
GetColor (Function)
In french: DonneCouleur
Allows you to get a set of harmonious colors without having to use a table of colors.
Example
// Fill in the data of the Chart control
FOR I = 1 TO 12
// Adds the turnover of month number I
grAddData(CHART_MyChart, I, arrValues[I])
 
// Assigns a color to the series of month number I
grSeriesColor(CHART_MyChart, I, GetColor())
END
Syntax
<Result> = GetColor([<Subscript> [, <Serial>]])
<Result>: Integer
Color in RGB format.
WEBDEV - Browser code <Result> corresponds to a Color variable.
<Subscript>: Optional integer
Number of the color to retrieve.
If this parameter is not specified, the color returned in a color that was never used before.
If this parameter is specified, the same color will always be returned for a given subscript.
PHP This parameter is not available.
<Serial>: Optional Integer constant
Constant indicating the style of color set to retrieve:
colSetDarkThe returned color is chosen among a set of darker colors (suitable for the TreeMap control for example).
colSetDefault
(Default value)
The returned color is chosen among a set of standard colors.
colSetPaletteThe returned color is chosen among the set of colors defined for the current palette.
WINDEVUniversal Windows 10 AppAndroidAndroid Widget iPhone/iPadIOS WidgetMac CatalystJava This constant is not available.
colSetPastelThe returned color is chosen among a set of lighter colors.
colSetTemplateThe returned color is chosen among the set of colors defined for the current skin template.
WEBDEV - Server codeWEBDEV - Browser codePHP This constant is not available.
Remarks
WEBDEV - Browser code

Tip

If the result is displayed in a trace (Trace), the Color variable is converted into a string corresponding to the color in RGB format.
Related Examples:
The drawing functions Unit examples (WINDEV): The drawing functions
[ + ] Using the main drawing functions of WINDEV to:
- Initialize an Image control for drawing
- Draw simple shapes
- Write a text into a drawing
- Change the color in a drawing
Business / UI classification: UI Code
Component: wd290obj.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help