Novacode.Paragraph.AppendDocProperty C# (CSharp) Method

AppendDocProperty() public method

Append a field of type document property, this field will display the custom property cp, at the end of this paragraph.
public AppendDocProperty ( CustomProperty cp, bool trackChanges = false, Formatting f = null ) : Paragraph
cp CustomProperty The custom property to display.
trackChanges bool
f Formatting The formatting to use for this text.
return Paragraph
        public Paragraph AppendDocProperty(CustomProperty cp, bool trackChanges = false, Formatting f = null)
        {
            this.InsertDocProperty(cp, trackChanges, f);
            return this;
        }