DXRichEditTrackChangesOptions Class
Represents Track Changes options.
Namespace: DevExpress.Xpf.RichEdit
Assembly: DevExpress.Xpf.RichEdit.v24.1.dll
NuGet Package: DevExpress.Wpf.RichEdit
Declaration
Related API Members
The following members return DXRichEditTrackChangesOptions objects:
Remarks
The DXRichEditAnnotationOptions.TrackChangesOptions property provides access to the TrackChangesOptions object.
The code sample shows how to access and specify Track Changes options in XAML:
<dxre:RichEditControl x:Name="richEditControl1" CommandBarStyle="Ribbon">
<dxre:RichEditControl.AnnotationOptions>
<dxre:DXRichEditAnnotationOptions ShowAllAuthors="True">
<dxre:DXRichEditAnnotationOptions.TrackChangesOptions>
<dxre:DXRichEditTrackChangesOptions DeletedCellColor="Gray"
InsertionColor="Red"
DisplayForReviewMode="SimpleMarkup"
DisplayInsertionStyle="Bold"
DisplayDeletionStyle="DoubleStrikethrough"/>
</dxre:DXRichEditAnnotationOptions.TrackChangesOptions>
</dxre:DXRichEditAnnotationOptions>
</dxre:RichEditControl.AnnotationOptions>
</dxre:RichEditControl>
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DXRichEditTrackChangesOptions class.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.