EventInfo.Handler

Description

Returns a String representing the name of the event handler function used for responding to the event.

Examples

VBScript Example

on error resume next
Application.Advise "OnBeginSceneSave","C:\MyEventHandler.vbs",,,"ABCSaveSceneEvent"
set info = Application.EventInfos("ABCSaveSceneEvent")
LogMessage "Handler: " & info.Handler