Returns the attribute values of an event as a Variant. Attributes are used for initializing events. If the event has no attributes the return value is an empty variant.
// get accessor Object rtn = EventInfo.Attributes; |
on error resume next
Application.Advise "OnBeginSceneSave","C:\MyEventHandler.vbs",,,"ABCSaveSceneEvent"
set info = Application.EventInfos("ABCSaveSceneEvent")
LogMessage "Attributes: " & info.Attributes
|