Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Determines whether the control’s background can be transparent.
Syntax
public int backStyle([int value])
Run On
Client
Parameters
- value
Type: int
The value to assign as the background style of the control; optional.
Return Value
Type: int
1 if the control background can be transparent; otherwise, 0.
Examples
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);