Skip to main content

Search OfficeIMO

Enter a topic, API type, or PowerShell command.

Documentation Search all OfficeIMO/

API Reference

Enum

ExcelExecutionMode

Namespace OfficeIMO.Excel
Assembly OfficeIMO.Excel
Base Enum
Implements
IComparable ISpanFormattable IFormattable IConvertible
Modifiers sealed

Determines how operations are executed.

Inheritance

  • Enum
  • ExcelExecutionMode

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Accepted by parameters

Values

public const ExcelExecutionMode Automatic #

Automatically choose between sequential and parallel execution based on thresholds.

Value: 0
public const ExcelExecutionMode Sequential #

Prefer single-threaded compute. Specialized single-pass paths may be used when they are faster.

Value: 1
public const ExcelExecutionMode Parallel #

Permit eligible compute work to run in parallel and apply results in source order. A specialized single-pass path may still be selected when parallel staging would only add overhead.

Value: 2