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

OnDomCompositionEnd() protected method

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