CollapseNSExplorer property (XY Plot object)
Returns or sets whether to collapse the tag explorer. Read/write. Boolean.
Syntax
XYPlot1
.CollapseNSExplorer
[= state
]where
XYPlot1
- is the name of an XY Plot object or an expression that evaluates to an XY Plot 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 CollapseNSExplorer() 'Collapses the tag explorer. XYPlot1.CollapseNSExplorer = False End Sub
Provide Feedback