Novacode.Table.InsertParagraphAfterSelf C# (CSharp) Method

InsertParagraphAfterSelf() public method

Insert a new Paragraph after this Table.
public InsertParagraphAfterSelf ( string text, bool trackChanges ) : Paragraph
text string The initial text for this new Paragraph.
trackChanges bool Should this insertion be tracked as a change?
return Paragraph
        public override Paragraph InsertParagraphAfterSelf(string text, bool trackChanges)
        {
            return base.InsertParagraphAfterSelf(text, trackChanges);
        }

Same methods

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