|
<< Click to Display Table of Contents >>
Layer |
This property defines, for a Screen, which layers are visible. For Screen objects, this property defines whether that Screen object is visible on that layer. This property's value represents a 32-bit mask, one bit for each layer. Therefore, users can define up to 32 individual layers. Thus, Screen objects can be logically grouped and displayed or hidden only by changing this property's mask.

Layer options
The next script contains an example of using this property.
Sub Screen1_Click()
Layer = 1
End Sub
NOTE |
The visibility of a Screen object depends on the Visible property set to True, its parent object being visible, and this property enabled for a Screen. |