The event-out slot that fired the event.
Declaring type: VrmlEvent
Namespace: Vrml.EAI.Event
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public BaseField Source { get; }
Property Value
Reference to the EventOut object that fired the event.
Collapse/Expand Remarks
This is a read-only property. You can only set this property via the constructor when creating new VrmlEvent objects.
Collapse/Expand Example
The following example shows how to get the EventOut object from the event:
C#
Vrml.EAI.Event.VrmlEvent evt = ...;
Vrml.EAI.Field.BaseField field = evt.Source;