Alsing.Windows.Forms.SyntaxBox.Painter.NativePainter.RenderAll C# (CSharp) Method

RenderAll() public method

Implementation of the IPainter RenderAll method.
public RenderAll ( ) : void
return void
        public void RenderAll()
        {
            //
            Control.View.RowHeight = GFX.BackBuffer.MeasureString("ABC").Height;
            Control.View.CharWidth = GFX.BackBuffer.MeasureString(" ").Width;


            Control.InitVars();

            Graphics g = Control.CreateGraphics();

            RenderAll(g);

            g.Dispose();
        }

Same methods

NativePainter::RenderAll ( Graphics g ) : void