EventInfo.FileName

説明

イベントハンドラ関数を実装しているファイル名を含むStringを戻します。

C#構文

// get accessor

String rtn = EventInfo.FileName;

VBScript の例

on error resume next

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

set info = Application.EventInfos("ABCSaveSceneEvent")

LogMessage "FileName: " & info.FileName