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

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.v18.2.dll

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