ShowToolbar property (XY Plot object)
Returns or sets whether the XY Plot toolbar is displayed. Read/write. Boolean.
Syntax
XYPlot1
.ShowToolbar
[= 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: Shows the XY Plot toolbar at runtime.
- False: Does not show the XY Plot toolbar at runtime.
Example
Private Sub ShowToolbar() XYPlot1.ShowToolbar = True End Sub
Provide Feedback