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

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

public SetText ( Phrase phrase ) : void
phrase Phrase
Результат void
    public void SetText(Phrase phrase) {
        bidiLine = null;
        composite = false;
        compositeColumn = null;
        compositeElements = null;
        listIdx = 0;
        rowIdx = 0;
        splittedRow = -1;
        waitPhrase = phrase;
    }
    

Usage Example

Пример #1
0
 /**
 * Adds an iText element to the cell.
 * @param element
 */
 public void AddElement(IElement element) {
     if (table != null) {
         table = null;
         column.SetText(null);
     }
     column.AddElement(element);
 }
All Usage Examples Of iTextSharp.text.pdf.ColumnText::SetText