LayoutFarm.HtmlBoxes.MyHtmlContainer.DetachEssentialHandlers C# (CSharp) Method

DetachEssentialHandlers() public method

public DetachEssentialHandlers ( ) : void
return void
        public void DetachEssentialHandlers()
        {
            this.domVisualRefresh =
                this.domRequestRebuild =
                this.containerInvalidateGfxHandler =
                 this.domFinished = null;
        }
        protected override void OnLayoutFinished()

Usage Example

Exemplo n.º 1
0
 /// <summary>
 /// Release the html container resources.
 /// </summary>
 protected override void Dispose(bool disposing)
 {
     if (htmlContainer != null)
     {
         this.timer01.Stop();
         htmlContainer.DetachEssentialHandlers();
         htmlContainer.Dispose();
         htmlContainer = null;
     }
     base.Dispose(disposing);
 }