CollapseNSExplorer property (TrendPro object)
Returns or sets whether to collapse the tag explorer. Read/write. Boolean.
Syntax
TrendPro1
.CollapseTagExplorer
[= state
]where
TrendPro1
- is the name of a TrendPro object or an expression that evaluates to a TrendPro object.state
- is a parameter of the type Boolean that can be set to one of the following:- True: Collapses the tag explorer and shows the title only.
- False: Expands the tag explorer.
Example
Private Sub CollapseTrendProExplorer() 'Collapses the tag explorer. TrendPro1.CollapseTagExplorer = False End Sub
Provide Feedback