Event (EventInfo)

Description

Use the SIObject.Type base property on the EventInfo object instead. EventInfo.Event is supported only to maintain backward compatibility.

Return Value

String

Examples

VBScript Example

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