Difference between revisions of "MC-Basic:compTable.MINPOSITION"

From SoftMC-Wiki
Jump to: navigation, search
m (Text replace - "<value>" to "<''value''>")
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:compTable.MINPOSITION}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 6: Line 7:
 
<''comptablename''>.minposition[I] = <''value''>
 
<''comptablename''>.minposition[I] = <''value''>
  
Availability         Versions 3.6.20 and higher
 
  
 
|AVAILABILITY=
 
|AVAILABILITY=
 
+
Since Version 3.6.20
  
 
|DESCRIPTION=
 
|DESCRIPTION=
This command defines the minimum position value for source axis number  I in the table.
+
This command defines the minimum position value for source axis number I in the table.
  
 
|TYPE=
 
|TYPE=
<''value''> :      Double
+
<''value''>: Double<br>
 
+
I Long
I :                 Long
 
  
 
|RANGE=
 
|RANGE=
<''value''>:      ± MaxDouble
+
<''value''>: ± MaxDouble<br>
 
+
I: -1 to the number of axes in the table
I :                              –1 to the number of axes in the table
 
  
 
|UNITS=
 
|UNITS=
Line 34: Line 32:
  
 
|LIMITATIONS=
 
|LIMITATIONS=
The Comp table must not be in use (CompActive=0)
+
*The Comp table must not be in use (CompActive=0)
 
+
*Minposition must be less then Maxposition
Minposition must be less then Maxposition
 
  
 
|EXAMPLE=
 
|EXAMPLE=
Line 42: Line 39:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:compTable.MAXPOSITION|compTable.MAXPOSITION]]
+
* [[MC-Basic:compTable.MINPOSITION|compTable.MINPOSITION]]
 
+
* [[MC-Basic:compTable.MAXPOSITION|compTable.MAXPOSITION]]
 
+
* [[MC-Basic:compTable.TARGETDATA|compTable.TARGETDATA]]
 +
* [[MC-Basic:compTable.SOURCEDATA|compTable.SOURCEDATA]]
 +
* [[MC-Basic:compTable.DIRECTION|compTable.DIRECTION]]
 +
* [[MC-Basic:COMPSET|COMPSET]]
 +
* [[MC-Basic:CREATECOMP|CREATECOMP]]
 +
* [[MC-Basic:COMMON SHARED ... AS COMP|COMMON SHARED comp_name AS COMP]]
 +
* [[MC-Basic:axis.COMPPOSITIONFEEDBACK|axis.COMPPOSITIONFEEDBACK]]
 +
* [[MC-Basic:axis.COMPPOSITIONCOMMAND|axis.COMPPOSITIONCOMMAND]]
 
}}
 
}}

Latest revision as of 06:30, 3 May 2017

Language: English  • 中文(简体)‎

This command defines the minimum position value for source axis number I in the table.

Syntax

<comptablename>.minposition[I] = <value>

Availability

Since Version 3.6.20

Type

<value>: Double
I − Long

Range

<value>: ± MaxDouble
I: -1 to the number of axes in the table

Scope

Task and Terminal

Limitations

  • The Comp table must not be in use (CompActive=0)
  • Minposition must be less then Maxposition

Examples

Comp1.minposition[2] = 1.32

See Also