Difference between revisions of "MC-Basic:CREATEPLSDATA"

From SoftMC-Wiki
Jump to: navigation, search
m (Text replace - "Write-Only" to "Write only")
m
Line 34: Line 34:
  
 
|EXAMPLE=
 
|EXAMPLE=
CreatePlsData 10 MyPls
+
<pre>CreatePlsData 10 MyPls</pre>
  
 
|SEE ALSO=
 
|SEE ALSO=

Revision as of 11:41, 23 April 2014

This command creates a PLS data structure. This structure is a vector used to hold the PLSPOSITION values. Any existing data structure associated with the specified PLS is erased and all data in the structure is reset to zero. <number of points> defines the number of rows in the data structure.

Short form

CPDat

Syntax

CreatePlsData <number of points> <pls>

Availability

All versions

Type

<number of points>: Long
<pls>: string

Range

<number of points>: 1 to MaxLong

<pls>: Any name that is not a keyword and is not already given to a variable in the system.

Scope

Configuration, Task or Terminal

Limitations

Write only. Data cannot be stored while being changed. The PLS cannot be enabled while data are being changed. The PLS must be declared as PLS.

Examples

CreatePlsData 10 MyPls

See Also