MC-Basic:PlcMotionStatusCreate

From SoftMC-Wiki
Revision as of 09:02, 8 November 2012 by Arwiebe (talk | contribs)
Jump to: navigation, search

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

Syntax

<handle> = MotionStatusCreate

Availability

4.10.x

Type

Long

Scope

Task or Terminal

Examples

dim MOT_READY as const long = 123
dim MotStatHanlde as long

MotStatHanlde = MotionStatusCreate

Move A1 MotionStatus= MotStatHanlde

do
  sleep 100
loop until MotionStatusQuery(MotStatHanlde, MOT_READY)

MotionStatusDestroy(MotStatHanlde)

See Also