Difference between revisions of "MC-Basic:PlcMotionStatusCreate"

From SoftMC-Wiki
Jump to: navigation, search
Line 46: Line 46:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:element.PlcMotionStatus|element.PlcMotionStatus]]
+
* [[MC-Basic:element.PlcMotionStatus|element.PlcMotionStatus]]
 
* [[MC-Basic:PlcMotionStatusDestroy|PlcMotionStatusDestroy]]
 
* [[MC-Basic:PlcMotionStatusDestroy|PlcMotionStatusDestroy]]
 
* [[MC-Basic:PlcMotionStatusQuery|PlcMotionStatusQuery]]
 
* [[MC-Basic:PlcMotionStatusQuery|PlcMotionStatusQuery]]

Revision as of 08:49, 22 May 2014

Creates a new PlcMotionStatus object and returns a pointer in memory to it.

Syntax

<handle> = PlcMotionStatusCreate

Availability

4.10.x

Type

Long

Scope

Task or Terminal

Examples

dim MotStatHanlde as long

MotStatHanlde = PlcMotionStatusCreate

Move A1 100 PlcMotionStatus= MotStatHanlde

while A1.isMoving
  sleep 100
  Print PlcMotionStatusQuery(MotStatHanlde, 1)
end while 

PlcMotionStatusDestroy(MotStatHanlde)

See Also