Adds an axis with a particular name to the collection. | |
Syntax: | Set CimAxis = object.Add ( Name ) |
Parameters: |
Name As
String - Specifies the name of
the axis to add.
|
Description: | CimAxes.Add adds a axis with the specified name. If you specify the name of an
existing axis, the existing axis is returned instead. Example The following CimView script excerpt adds a new Y axis with name Y Axis: Dim Axis as CimAxis Set Axis = cimOleObj.Y.Add("Y Axis") |