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

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

public EoFill ( ) : void
Результат void
        public void EoFill()
        {
            if (inText) {
                if (autoControlTextBlocks) {
                    EndText();
                } else {
                    throw new IllegalPdfSyntaxException(
                        MessageLocalization.GetComposedMessage("path.construction.operator.inside.text.object"));
                }
            }
            content.Append("f*").Append_i(separator);
        }

Usage Example

Пример #1
0
 public void Strip(PdfContentByte content, Rectangle rect) {
   content.Rectangle(
     rect.Left - 1, rect.Bottom - 5f,
     rect.Width, rect.Height + 8
   );
   content.Rectangle(
     rect.Left, rect.Bottom - 2,
     rect.Width - 2, rect.Height + 2
   );
   float y1 = rect.Top + 0.5f;
   float y2 = rect.Bottom - 4;
   for (float f = rect.Left; f < rect.Right - 4; f += 5) {
     content.Rectangle(f, y1, 4f, 1.5f);
     content.Rectangle(f, y2, 4f, 1.5f);
   }
   content.EoFill();
 }
All Usage Examples Of iTextSharp.text.pdf.PdfContentByte::EoFill
PdfContentByte