iTextSharp.text.pdf.ColumnText.AddText C# (CSharp) Метод

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

public AddText ( Chunk chunk ) : void
chunk Chunk
Результат void
    public void AddText(Chunk chunk) {
        if (chunk == null || composite)
            return;
        AddText(new Phrase(chunk));
    }
    

Same methods

ColumnText::AddText ( Phrase phrase ) : void

Usage Example

Пример #1
0
 /** Constructs a <CODE>PdfPCell</CODE> with a <CODE>Phrase</CODE>.
  * The default padding is 2.
  * @param phrase the text
  */
 public PdfPCell(Phrase phrase) : base(0, 0, 0, 0)
 {
     borderWidth = 0.5f;
     border      = BOX;
     column.AddText(this.phrase = phrase);
     column.SetLeading(0, 1);
 }
All Usage Examples Of iTextSharp.text.pdf.ColumnText::AddText