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
Syntaxpublic bool IsFormatRevision { get; }
Public ReadOnly Property IsFormatRevision As Boolean
Get
public:
property bool IsFormatRevision {
bool get ();
}
member IsFormatRevision : bool with get
Property Value
Type:
Boolean
ExamplesShows 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