Search
Arrow.Visible Property
See Also
 



Gets or sets a value indicating whether this arrow should be drawn on the screen.

 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

You can make arrows completely invisible using this property. 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 hid an arrow.

 See Also