CimLimit.High (property)

Gets and sets the axis high limit.
Syntax: double = object.High
object.High = double
Description: CimLimit.High contains the axis high limit. The value of this property must always be greater than the value of the Low property. An automation exception will occur if this condition is not met when the value is set.

The value of this property defaults to 100.

Example

The following CimView script excerpt changes the high limit on the first axis to 220:
cimOleObj.X(0).Limit.High = 220