HorizontalAxisChanged [Event]
- Last UpdatedJul 18, 2023
- 1 minute read
This event is raised when the date/time axis position or scale of a pen is changed.
Defined As
-
[VBA] HorizontalAxisChanged(pen As Object)
-
[Cicode] HorizontalAxisChanged(OBJECT processAnalyst, OBJECT pen)
-
[C++] HorizontalAxisChanged(IPen* pen)
Parameters
pen
[in] Refers to the pen that has changed. This will be invalid if pens are locked.
processAnalyst
[in] Indicates the Process Analyst object that raised the event (Cicode only).
Remarks
When the LockedPens property is True, this event is fired only once with the pen parameter marked as invalid.
Calling Syntax
Assumes you have a Process Analyst on a page with an event class defined as AN35_E.
[VBA]
Sub AN35_E_HorizontalAxisChanged (pen As Object)
End Sub
[Cicode]
FUNCTION AN35_E_HorizontalAxisChanged (OBJECT processAnalyst, OBJECT pen)
END