Difference between revisions of "AXY:MC-Basic:axis.ABSOLUTE"

From SoftMC-Wiki
Jump to: navigation, search
Line 44: Line 44:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:ATTACH|ATTACH]]
+
* [[MC-Basic:ATTACH|ATTACH]]
  
  
 
}}
 
}}

Revision as of 08:35, 22 May 2014

Defines whether the commands to the axis are absolute or incremental. In absolute mode, the position commands to the axis are the required absolute positions. In incremental mode, the position commands are the required changes in position.

This property can be used inside a motion command to override the permanent value.

Short form

<axis>.Abs

Syntax

<axis>.Absolute = <value>

?<axis>.Absolute

Availability

All versions

Type

Long

Range

0 (OFF)

1 (ON)

Default

0 to Incremental commands

Scope

Configuration, Task or Terminal

Limitations

To set the value within a task, the axis must be attached to that task (using the ATTACH command).

Examples

Xaxis.Absolute = False

?Xaxis.Absolute

Move Xaxis 100 absolute = True

See Also