MouseDoubleClick [Event]
- Last UpdatedJul 18, 2023
- 1 minute read
This event is raised whenever a mouse double-click occurs on the graphical chart area of the Process Analyst.
Defined As
-
[VBA] MouseDoubleClick(pen As Object, button As Integer)
-
[Cicode] MouseDoubleClick(OBJECT processAnalyst, OBJECT pen, INT button)
-
[C++] MouseDoubleClick(IPen pen, int button)
Parameters
pen
[in] Indicates which pen the double-click occurred on. This object will be invalid if no pen was double-clicked.
button
[in] Indicates which button was double-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_MouseDoubleClick(pen As Object, button As Integer)
End Sub
[Cicode]
FUNCTION myPage_AN35_MouseDoubleClick(OBJECT processAnalyst, OBJECT pen, INT button)
END