.. highlightlang:: us .. index:: AppSetUserColorTable .. index:: Benutzerfarben .. _appsetusercolortable: AppSetUserColorTable ==================== .. us.tag AppSetUserColorTable GERMAN App New5100 :ref:`AppSetUserColorTable` setzt die 16 frei definierbaren Farben. .. function:: bool = AppSetUserColorTable(rvColors) .. us.return **Returnwert** .. us.params **Parameter** .. uparam:: rvColors *rvColors* .. us.example **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) .. us.history **History** .. list-table:: :header-rows: 1 * - Version - Beschreibung * - 5.10.0 - Neu. .. seealso:: :ref:`uberblick-application-objekt`, :ref:`AppGetUserColorTable` :sub:`id-310126`