AppSetUserColorTable

AppSetUserColorTable setzt die 16 frei definierbaren Farben.

bool = AppSetUserColorTable(rvColors)

Returnwert

Parameter

rvColors

rvColors

Beispiel

Example

Setzte die ersten 8 Farben

// rvColorRef = Color_RGB_to_COLORREF(rmColorRGB)
// rmColorRGB = Color_COLORREF_to_RGB(rvColorRef)
// rmColorRGB: Matrix with 3 columns

// Read the user colors
rvC = AppGetUserColorTable()
rvC[1] = Color_RGB_to_COLORREF([127,231,123]);
rvC[2] = Color_RGB_to_COLORREF([127,0,127]);
...
rvC[8] = Color_RGB_to_COLORREF([255,127,0]);
// Write the new users colors
AppSetUserColorTable(rvC)

History

Version Beschreibung
5.10.0 Neu.

id-310126