Share via


FormTreeControl.backgroundColor Method

Gets or sets the background color of the control.

Syntax

public int backgroundColor([int value])

Run On

Client

Parameters

  • value
    Type: int
    The value to assign as the background color of the control.

Return Value

Type: int
An integer that contains a packed RGB color.

Remarks

The integer that is returned contains a packed RGB color as follows:

  • The low-order byte contains a value for the relative intensity of red.

  • The second byte contains a value for green.

  • The third byte contains a value for blue.

  • The high-order byte must be 0 (zero).

  • The maximum value for a single byte is 255.

Examples

The following example shows how to return and set the background color for a control.

// Retrieve the existing background color. 
info (strfmt("Background color: %1", this.backgroundColor())); 
// Set the background color. 
this.backgroundColor(WindowsPalette::DarkShadow3D);

See Also

FormTreeControl Class

FormTreeControl.backStyle Method

FormTreeControl.colorScheme Method

WindowsPalette Enumeration