Gets or sets the user data associated with this field.
C# |
---|
public abstract object UserData { get; set; } |
The following example demonstrates how to attach a data
object ("myData") to an event-out slot:
C# |
---|
MyClass myData = ...;
Vrml.EAI.Field.EventOut eventOut = ...;
eventOut.UserData = myData;
...
myData = eventOut.UserData;
|