color format
Specifies whether RGB color codes are expressed in decimal or hexadecimal format.
Two possible values are:
- RGB: Color code is expressed as decimal red, green, and blue values (See ).
- Hex: Color code is in the form of a three byte hexadecimal number representing each component of the RGB color (See ).
setting value
setting color format RGB
 
window control property variable
get native property window sample groupbox test Background rgb code
 
setting value
setting color format Hex
 
window control property variable
get native property window sample groupbox test Background hex code
- Tip:The specified color formatting code can be used in combination with the following built-in actions:
- RGB value: The three decimal values representing each component of the RGB color must be separated with commas. For example, white is represented as
255, 255, 255
. - Hex value: Place a black slash ( \ ) and a pound key ( # ) before the hexadecimal value to indicate that it is a hexadecimal. For example, the white color is represented as
\#FFFFFF
.