Search
Box.Expanded Property
See Also
 



Gets or sets a value indicating whether the tree that starts from this box is expanded or collapsed.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_Expanded ()
void put_Expanded (
    bool value
)

 Property Value

A boolean value.

 Remarks

Returns false if the tree starting from this box is collapsed, either by the user or programmatically through the Collapse method; true, if the tree is expanded.

 See Also