Skip to main content
A newer version of this page is available. .

DXRichEditTrackChangesOptions Class

Represents Track Changes options.

Namespace: DevExpress.Xpf.RichEdit

Assembly: DevExpress.Xpf.RichEdit.v21.2.dll

NuGet Package: DevExpress.Wpf.RichEdit

Declaration

public class DXRichEditTrackChangesOptions :
    DXRichEditOptionsBase<TrackChangesOptions>

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>

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.

Inheritance

Object
DispatcherObject
DependencyObject
Freezable
DevExpress.Xpf.RichEdit.DXRichEditOptionsBase<TrackChangesOptions>
DXRichEditTrackChangesOptions
See Also