PenCreated [Event]
- Last UpdatedJul 18, 2023
- 1 minute read
This event is raised whenever a pen is either created via the automation model, or added through the Add Pen dialog at run time.
Defined As
-
[VBA] PenCreated(pen As Object)
-
[Cicode] PenCreated(OBJECT processAnalyst, OBJECT pen)
-
[C++] PenCreated(IPen* pen)
Parameters
pen
[in] Refers to the pen that was created.
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_PenCreated(pen As Object)
End Sub
[Cicode]
FUNCTION myPage_AN35_PenCreated(OBJECT processAnalyst, OBJECT pen)
END