Difference between revisions of "MC-Basic:SYSTEMAXIS"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with "fffff")
 
(AXY: new links)
 
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
fffff
+
{{Languages|MC-Basic:SYSTEMAXIS}}
 +
{{MC-Basic
 +
|SHORT FORM=
 +
 
 +
 
 +
|SYNTAX=
 +
<''generic_axis''> = systemaxis (<''long_expression''>) <br>
 +
? systemaxis (<''long_expression''>).<axis_property>
 +
 
 +
|AVAILABILITY=
 +
 
 +
|DESCRIPTION=
 +
Returns an axis according to the handle received through the argument.
 +
 
 +
|TYPE=
 +
Axis
 +
 
 +
|RANGE=
 +
A valid axis handle.
 +
 
 +
|UNITS=
 +
 
 +
 
 +
|DEFAULT=
 +
 
 +
 
 +
|SCOPE=
 +
Configuration, Task, Terminal
 +
 
 +
|LIMITATIONS=
 +
Cannot serve as an axis in Motion commands.
 +
 
 +
 
 +
|EXAMPLE=
 +
 
 +
GenericAxis = SystemAxis(1)
 +
 
 +
?SystemAxis(2).pcmd
 +
 
 +
 
 +
|SEE ALSO=
 +
* [[MC-Basic:COMMON SHARED or DIM SHARED or DIM ... AS GENERIC AXIS|COMMON SHARED or DIM SHARED or DIM ... AS GENERIC AXIS]]
 +
* [[MC-Basic:element.ELEMENTID|ELEMENTID]]
 +
 
 +
[[Category:MC-Basic:Declarations|SYSTEMAXIS]]
 +
}}

Latest revision as of 10:53, 13 September 2017

Language: English  • 中文(简体)‎

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

Syntax

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

Type

Axis

Range

A valid axis handle.

Scope

Configuration, Task, Terminal

Limitations

Cannot serve as an axis in Motion commands.

Examples

GenericAxis = SystemAxis(1)

?SystemAxis(2).pcmd

See Also