Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DXRichEditBehaviorOptions.ForeColorSource Property

Gets or sets the RichEditControl default font color settings. This is a dependency property.

Namespace: DevExpress.Xpf.RichEdit

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

NuGet Package: DevExpress.Wpf.RichEdit

#Declaration

public RichEditBaseValueSource ForeColorSource { get; set; }

#Property Value

Type Description
RichEditBaseValueSource

A RichEditBaseValueSource enumeration member specifying the font color settings provider.

Available values:

Name Description
Auto

The property value is obtained from the corresponding property of the control if it is different from default.

Document

The property value is obtained from the corresponding property of the document.

Control

The property value is obtained from the corresponding property of the control.

#Property Paths

You can access this nested property as listed below:

Object Type Path to ForeColorSource
RichEditControl
.BehaviorOptions .ForeColorSource

#Remarks

Set the ForeColorSource to RichEditBaseValueSource.Control use the RichEditControl.Font property value as the text’s forecolor. The RichEditBaseValueSource.Auto value indicates that if the ForeColor property of the control has a value different from the default, then this value is applied. The forecolor is used to the text with no direct font formatting or style applied.

See Also