Object Hierarchy | 関連する C++クラス:EventInfo
EventInfo
v2.0
EventInfo は、特定のイベントに関する読み取り専用の情報(名前、タイプ、イベントハンドラ名など)を保持します。この情報には EventInfo プロパティからアクセスできます。EventInfo オブジェクトは XSIApplication.EventInfos を使用して作成します。
Application | Attributes | Categories | CustomData |
FileName | FullName | Handler | Help |
Language | Mute | Name | NestedObjects |
Origin | OriginPath | Parent | Type |
on error resume next Application.Advise "OnBeginSceneSave","C:\MyEventHandler.vbs",,,"ABCSaveSceneEvent" set info = Application.EventInfos("ABCSaveSceneEvent") LogMessage "Type: " & info.Type LogMessage "Name: " & info.name LogMessage "Token: " & info.Token LogMessage "Handler: " & info.Handler LogMessage "Filename: " & info.Filename LogMessage "Language: " & info.Language if IsArray(info.Attributes) then arr = info.Attributes for i=0 to ubound(arr,1) LogMessage "Attributes " & i & ":" & arr(i) next else LogMessage "Attributes: " & info.Attributes end if if IsArray(info.CustomData) then arr = info.CustomData for i=0 to ubound(arr,1) LogMessage "CustomData " & i & ":" & arr(i) next else LogMessage "CustomData: " & info.CustomData end if |