EventInfo.Attributes

Description

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.

C# Syntax

// get accessor

Object rtn = EventInfo.Attributes;

Examples

VBScript Example

on error resume next

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

set info = Application.EventInfos("ABCSaveSceneEvent")

LogMessage "Attributes: " & info.Attributes