This event is raised whenever a single mouse click occurs on the graphical chart area of the Process Analyst.
Defined As
Parameters
pen
[in]
Indicates
which pen the click occurred on. This object will be invalid if no
pen was clicked.
button
[in]
Indicates
which button was clicked: 0 = Left, 1 = Right.
processAnalyst
[in]
Indicates the
Process Analyst object that 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_MouseClick(pen As Object, button As Integer)
End Sub
[Cicode]
FUNCTION myPage_AN35_MouseClick(OBJECT processAnalyst, OBJECT pen, INT button)
END