"windowOpacity"

This property allows to define the opacity of the complete top level window (module or child panel).

Synopsis

this.windowOpacity(float opacity);

Parameter

Parameter Description
opacity Opacity of the top level window (module or child panel). The valid range is between 0.0 (completely transparent) and 1.0 (completely opaque).

Description

This property allows to define the opacity of the complete top level window (module or child panel).

This attribute is not available when the panel is used inside a embedded module.

Semi-transparent window updates and size changes are significantly slower than updates or charges to opaque windows.

Example

main()
{
  this.windowOpacity(0.5);
}

Assignment

Panel