Novacode.Table.InsertParagraphAfterSelf C# (CSharp) Method

InsertParagraphAfterSelf() public method

Insert a new Paragraph after this Table.
public InsertParagraphAfterSelf ( string text ) : Paragraph
text string The initial text for this new Paragraph.
return Paragraph
        public override Paragraph InsertParagraphAfterSelf(string text)
        {
            return base.InsertParagraphAfterSelf(text);
        }

Same methods

Table::InsertParagraphAfterSelf ( Paragraph p ) : Paragraph
Table::InsertParagraphAfterSelf ( string text, bool trackChanges ) : Paragraph
Table::InsertParagraphAfterSelf ( string text, bool trackChanges, Formatting formatting ) : Paragraph