The Browser object that produced this event.
Declaring type: BrowserEvent
Namespace: Vrml.EAI.Event
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public Browser Source { get; }
Property Value
The Browser object that produced this event.
Collapse/Expand Remarks
This is a read-only property. You can only set this property via the constructor when creating new BrowserEvent objects.
Collapse/Expand Example
The following example shows how to find out which Browser object created the event:
C#
Vrml.EAI.Event.BrowserEvent evt = ...;
Vrml.EAI.Browser browser = evt.Source;