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

DXRichEditCommentOptions.HighlightCommentedRange Property

Gets or sets whether the commented document ranges are highlighted. This is a dependency property.

Namespace: DevExpress.Xpf.RichEdit

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.RichEdit, DevExpress.Wpf.RichEdit

Declaration

public bool HighlightCommentedRange { get; set; }

Property Value

Type Description
Boolean

true, to highlight the ranges which corresponds to the document comments; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to HighlightCommentedRange
DXRichEditAnnotationOptions
.CommentsOptions .HighlightCommentedRange
RichEditControl
.CommentOptions .HighlightCommentedRange

Remarks

When the DXRichEditCommentOptions.Visibility property is set to RichEditCommentVisibility.Visible, the comment balloons are displayed and document ranges are highlighted.

To hide comments and leave the commented ranges highlighted, set the DXRichEditCommentOptions.Visibility property to RichEditCommentVisibility.Hidden and the HighlightCommentedRange - to true.

Default comment colors are retrieved from the redefined color scheme, a distinct color for each reviewer. The colors are shown in the picture below.

CommentColors

To set a uniform color for all comments and reviewers, use the DXRichEditCommentOptions.Color property.

See Also