Difference between revisions of "MC-Basic:SYSTEMAXIS"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with "fffff")
 
Line 1: Line 1:
fffff
+
{{MC-Basic
 +
|SHORT FORM=
 +
 
 +
 
 +
|SYNTAX=
 +
<''generic_axis''> = systemaxis (<''long_expression''>)
 +
? systemaxis (<''long_expression''>).<property>
 +
 
 +
|AVAILABILITY=
 +
 
 +
|DESCRIPTION=
 +
Returns an axis according to the handle received through the argument.
 +
 
 +
|TYPE=
 +
AXIS
 +
 
 +
|RANGE=
 +
 
 +
 
 +
|UNITS=
 +
 
 +
 
 +
|DEFAULT=
 +
 
 +
 
 +
|SCOPE=
 +
Configuration, Task, Terminal
 +
 
 +
|LIMITATIONS=
 +
SystemAxis cannot replace an axis within Motion commands.
 +
 
 +
 
 +
|EXAMPLE=
 +
 
 +
GenericAxis = SystemAxis(1)
 +
 
 +
?SystemAxis(2).pcmd
 +
 
 +
 
 +
|SEE ALSO=
 +
 
 +
[[Category:MC-Basic:Declarations|ARRAYSIZE]]
 +
}}

Revision as of 11:39, 13 November 2014

Returns an axis according to the handle received through the argument.

Syntax

<generic_axis> = systemaxis (<long_expression>) ? systemaxis (<long_expression>).<property>

Type

AXIS

Scope

Configuration, Task, Terminal

Limitations

SystemAxis cannot replace an axis within Motion commands.

Examples

GenericAxis = SystemAxis(1)

?SystemAxis(2).pcmd

See Also