Skybound.Gecko.GeckoWebBrowser.OnDomCompositionStart C# (CSharp) 메소드

OnDomCompositionStart() 보호된 메소드

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