Novacode.Table.InsertParagraphAfterSelf C# (CSharp) Method

InsertParagraphAfterSelf() public method

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

Same methods

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