Difference between revisions of "MC-Basic:SYSTEMGROUP"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with "ffff")
 
Line 1: Line 1:
ffff
+
{{MC-Basic
 +
|SHORT FORM=
 +
 
 +
 
 +
|SYNTAX=
 +
<''generic_group''> = systemgroup (<''long_expression''>) <br>
 +
? systemgroup (<''long_expression''>).<group_property>
 +
 
 +
|AVAILABILITY=
 +
 
 +
|DESCRIPTION=
 +
Returns a group according to the handle received through the argument.
 +
 
 +
|TYPE=
 +
Group
 +
|RANGE=
 +
A valid group handle.
 +
 
 +
|UNITS=
 +
 
 +
 
 +
|DEFAULT=
 +
 
 +
 
 +
|SCOPE=
 +
Configuration, Task, Terminal
 +
 
 +
|LIMITATIONS=
 +
Cannot serve as a group in Motion commands.
 +
 
 +
 
 +
|EXAMPLE=
 +
 
 +
GenericGroup = SystemGroup(65)
 +
 
 +
?SystemGroup(66).pfb
 +
 
 +
|SEE ALSO=
 +
* [[MC-Basic:COMMON SHARED or DIM SHARED or DIM ... AS GENERIC GROUP|COMMON SHARED or DIM SHARED or DIM ... AS GENERIC GROUP]]
 +
* [[MC-Basic:group.ELEMENTID|group.ELEMENTID]]
 +
 
 +
[[Category:MC-Basic:Declarations|SYSTEMGROUP]]
 +
}}

Revision as of 13:48, 13 November 2014

Returns a group according to the handle received through the argument.

Syntax

<generic_group> = systemgroup (<long_expression>)
? systemgroup (<long_expression>).<group_property>

Type

Group

Range

A valid group handle.

Scope

Configuration, Task, Terminal

Limitations

Cannot serve as a group in Motion commands.

Examples

GenericGroup = SystemGroup(65)

?SystemGroup(66).pfb

See Also