Gets and sets a collection of Y axes. | |
Syntax: | Set CimAxes = object.Y object.Y = CimAxes |
Description: | CimGraphControl.Y is a
collection of all the Y axes on the
control. The value of this property defaults to having one Y axis. Example The following CimView script excerpt adds a new Y axis to the control and changes its title: Dim YAxis As CimAxis Set YAxis = cimOleObj.Y.Add("Y Axis") YAxis.Title = "Y
Axis" |