ViewLoadedSaved[Event]
- Last UpdatedJul 18, 2023
- 1 minute read
This event is raised whenever a view is either loaded or saved via the automation model, or through the Load/Save dialog at run time.
Defined As
-
[VBA] ViewLoadedSaved(sViewLocation As String, bIsLoaded As Boolean)
-
[Cicode] ViewLoadedSaved(OBJECT processAnalyst, STRING sViewLocation, INT bIsLoadedSaved)
-
[C++] ViewLoadSaved(BSTR sViewLocation, VARIANT_BOOL bIsLoaded)
Parameters
sViewLocation
[in] Refers to the new view location.
bIsLoadedSaved
[in] Refers to whether this event is triggered by Load (-1, or VARIANT_TRUE) or Save (0, or VARIANT_FALSE).
processAnalyst
[in] Indicates the Process Analyst object which raised the event. (Cicode only).
Calling Syntax
Assumes your Process Analyst’s Event Class Name has been defined as myPage_AN35.
[VBA]
Sub myPage_AN35_ViewLoadedSaved(pen As Object, isLoaded as Boolean)
End Sub
[Cicode]
FUNCTION myPage_AN35_ViewLoadedSaved(OBJECT processAnalyst, STRING sViewLocation,
INT bIsLoaded)
END