Share via


FormTreeControl.backStyle Method

Definition

Overloads

backStyle()

Determines whether the control background can be transparent.

backStyle(Int32)

backStyle()

Determines whether the control background can be transparent.

public virtual int backStyle();

Returns

1 if the control background can be transparent; otherwise, 0.

Remarks

The following example shows how to return and set the background style.

// Return the background style. 
info (strfmt("Background style: %1", this.backStyle())); 
// Set the background style. 
this.backStyle(FormBackStyle::Transparent);

Applies to

backStyle(Int32)

public virtual int backStyle(int _value);

Parameters

_value
Int32

The value to assign as the background style of the control.

Returns

Applies to