ParagraphIsFormatRevision Property

Returns true if formatting of the object was changed in Microsoft Word while change tracking was enabled.

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public bool IsFormatRevision { get; }

Property Value

Type: Boolean
Examples
Shows how to get information about whether this object was formatted in Microsoft Word while change tracking was enabled
Document doc = new Document(MyDir + "Format revision.docx");

Paragraph firstParagraph = DocumentHelper.GetParagraph(doc, 0);
Assert.IsTrue(firstParagraph.IsFormatRevision);
See Also