Using the Process Analyst > Process Analyst for Developers > Automation Model > CursorMoved [Event]

CursorMoved [Event]

This event is raised whenever the cursor position changes.

Defined As

Parameters

cursor

[in] Refers to the cursor that has moved.

position

[in] Indicates the new position of the cursor.

processAnalyst

[in] Indicates the Process Analyst object which raised the event. (Cicode only).

Calling Syntax

Assumes you have a Process Analyst on a page with an event class defined as myPage_AN35.

[VBA]

Sub myPage_AN35_CursorMoved(pen As Object, position As Integer)
End Sub

[Cicode]

FUNCTION myPage_AN35_CursorMoved(OBJECT processAnalyst, OBJECT cursor, INT position)
END