EventInfo.FileName

Description

Returns a String containing the name of the file implementing the event handler function.

C# Syntax

// get accessor

String rtn = EventInfo.FileName;

Examples

VBScript Example

on error resume next

Application.Advise "OnBeginSceneSave","C:\MyEventHandler.vbs",,,"ABCSaveSceneEvent"

set info = Application.EventInfos("ABCSaveSceneEvent")

LogMessage "FileName: " & info.FileName