officefileapi-devexpress-dot-xtrarichedit-d7c63e12.md
Lists modes for layout calculation.
Namespace : DevExpress.XtraRichEdit
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
public enum CalculationModeType
Public Enum CalculationModeType
| Name | Description |
|---|---|
Automatic |
Calculates layout asynchronously.
|
| Manual |
Does not allow asynchronous layout calculation.
|
The following properties accept/return CalculationModeType values:
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