CursorMoved [Event]
- Last UpdatedJul 18, 2023
- 1 minute read
This event is raised whenever the cursor position changes.
Defined As
-
[VBA] CursorMoved(cursor As Object, position As Integer)
-
[Cicode] CursorMoved (OBJECT processAnalyst, OBJECT cursor, INT position)
-
[C++] CursorMoved (IPen* pen, int position)
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