LayoutFarm.dbugVisualLayoutTracer.Stop C# (CSharp) Method

Stop() public method

public Stop ( ) : void
return void
        public void Stop()
        {
            strmWriter.Flush();
        }
        public void WriteInfo(RenderElement v, string info, string indentPrefix, string indentPostfix)

Usage Example

Example #1
0
 public void dbug_FinishLayoutTraceSession()
 {
     if (dbugLastestDebugVisualLay != null)
     {
         dbugLastestDebugVisualLay.Stop();
     }
     if (debugLayoutTracerStack.Count > 0)
     {
         dbugLastestDebugVisualLay = debugLayoutTracerStack.Pop();
     }
     else
     {
         dbugLastestDebugVisualLay = null;
     }
 }