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

CalculationModeType Enum

Lists modes for layout calculation.

Namespace: DevExpress.XtraRichEdit

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

NuGet Package: DevExpress.RichEdit.Core

#Declaration

public enum CalculationModeType

#Members

Name Description
Automatic

Calculates layout asynchronously.

Manual

Does not allow asynchronous layout calculation.

#Related API Members

The following properties accept/return CalculationModeType values:

#Remarks

Automatic mode is the default setting for WPF and WinForms Rich Editors. It forces layout recalculation asynchronously in another thread after the document is modified. Manual mode is the default for the Word Processing Document API component. It does not allow asynchronous execution of the layout calculation procedure.

See Also