Skybound.Gecko.GeckoWebBrowser.OnDomCompositionStart C# (CSharp) Method

OnDomCompositionStart() protected method

Raises the DomCompositionStart event.
protected OnDomCompositionStart ( GeckoDomEventArgs e ) : void
e GeckoDomEventArgs The data for the event.
return void
        protected virtual void OnDomCompositionStart(GeckoDomEventArgs e)
        {
            if (((GeckoDomEventHandler)this.Events[DomCompositionStartEvent]) != null)
                ((GeckoDomEventHandler)this.Events[DomCompositionStartEvent])(this, e);
        }