iTextSharp.text.pdf.PdfLiteral.PdfLiteral C# (CSharp) Method

PdfLiteral() public method

public PdfLiteral ( int size ) : System
size int
return System
        public PdfLiteral(int size)
            : base(0, (byte[])null)
        {
            bytes = new byte[size];
            for (int k = 0; k < size; ++k) {
               bytes[k] = 32;
            }
        }

Same methods

PdfLiteral::PdfLiteral ( byte b ) : System
PdfLiteral::PdfLiteral ( int type, byte b ) : System
PdfLiteral::PdfLiteral ( int type, string text ) : System
PdfLiteral::PdfLiteral ( string text ) : System