iTextSharp.text.pdf.PdfContentByte.Ellipse C# (CSharp) Метод

Ellipse() публичный метод

public Ellipse ( float x1, float y1, float x2, float y2 ) : void
x1 float
y1 float
x2 float
y2 float
Результат void
        public void Ellipse(float x1, float y1, float x2, float y2)
        {
            Arc(x1, y1, x2, y2, 0f, 360f);
        }

Usage Example

Пример #1
1
 public void Ellipse(PdfContentByte content, Rectangle rect) {
   content.SaveState();
   content.SetRGBColorFill(0x00, 0x00, 0xFF);
   content.Ellipse(
     rect.Left - 3f, rect.Bottom - 5f,
     rect.Right + 3f, rect.Top + 3f
   );
   content.Fill();
   content.RestoreState();
 }
All Usage Examples Of iTextSharp.text.pdf.PdfContentByte::Ellipse
PdfContentByte