Event that fires just after a view is activated.
Name | Type | Description |
ViewObject | View | The view that has been activated. |
BeforeOrAfter | EventTimingEnum | Input indicating if the event is being fired before (kBefore) or after (kAfter) the view is activated. This notification is currently only provided after the view has been activated. To protect yourself against possible future changes to this event you should write your code so that you only respond to kAfter, as shown below. Private Sub ApplicationEvents_OnActivateView(...) If BeforeOrAfter = kAfter Then ' Your code in reaction to the notification. End If End Sub |
Context | NameValueMap | Input object that can be used to determine the context of why the event fired. No context information is provided for this event. |
HandlingCode | HandlingCodeEnum | Output that indicates how you are handling the event. This argument is ignored for this event. |