Search
Box.Visible Property
See Also
 



Gets or sets value indicating whether this box is visible.

 Syntax

VB6  Copy Code

Public Property Get Visible() As Boolean
Public Property Let Visible( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_Visible ()
void put_Visible (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

A box can be made completely invisible by assigning false to this property. If invisible, no part of the box will be painted (as opposed to Transparent, where box' text and picture are still painted). Note that collapsing / expanding of box hierarchical structures is implemented by setting the child boxes and their connecting arrows respectively invisible / visible. Thus, you can use this property to determine if collapsing a tree hides a box.

The ToolTip of an invisible box is not displayed.

 See Also