wpf-devexpress-dot-xpf-dot-richedit-62050d98.md
Represents Track Changes options.
Namespace : DevExpress.Xpf.RichEdit
Assembly : DevExpress.Xpf.RichEdit.v25.2.dll
NuGet Package : DevExpress.Wpf.RichEdit
public class DXRichEditTrackChangesOptions :
DXRichEditOptionsBase<TrackChangesOptions>
Public Class DXRichEditTrackChangesOptions
Inherits DXRichEditOptionsBase(Of TrackChangesOptions)
The following members return DXRichEditTrackChangesOptions objects:
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>
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.
wpf-richedit-manage-tracked-changes/CS/DXRichEdit_TrackChanges/MainWindow.xaml#L14
<dxre:DXRichEditAnnotationOptions.TrackChangesOptions>
<dxre:DXRichEditTrackChangesOptions DisplayForReviewMode="AllMarkup"
DisplayFormatting="ColorOnly"
Object DispatcherObject DependencyObject Freezable DevExpress.Xpf.RichEdit.DXRichEditOptionsBase<TrackChangesOptions> DXRichEditTrackChangesOptions
See Also