iTextSharp.text.pdf.draw.LineSeparator.Draw C# (CSharp) Метод

Draw() публичный Метод

public Draw ( PdfContentByte canvas, float llx, float lly, float urx, float ury, float y ) : void
canvas iTextSharp.text.pdf.PdfContentByte
llx float
lly float
urx float
ury float
y float
Результат void
        public override void Draw(PdfContentByte canvas, float llx, float lly, float urx, float ury, float y)
        {
            canvas.SaveState();
            DrawLine(canvas, llx, urx, y);
            canvas.RestoreState();
        }