API Reference
Enum
ExcelExecutionMode
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.
Returned or exposed by
- Field ExcelExecutionMode.Automatic
- Field ExcelExecutionMode.Parallel
- Field ExcelExecutionMode.Sequential
- Property ExcelExecutionPolicy.Mode
- Property ExcelExecutionPolicy.OnDecision
Accepted by parameters
- Method ExcelDocument.InsertDataSet
- Method ExcelSheet.AppendDataTableToTable
- Method ExcelSheet.AutoFitColumns
- Method ExcelSheet.AutoFitColumnsExcept
- Method ExcelSheet.AutoFitColumnsFor
- Method ExcelSheet.AutoFitRows
- Method ExcelSheet.CellValues
- Method ExcelSheet.FromJson
- Method ExcelSheet.InsertDataTable
- Method ExcelSheet.InsertDataTableAsTable
- Method ExcelSheet.TableToDataTable
- Method ExcelSheet.TableToJson
- Method ExcelSheet.ToDataTable
- Method ExcelSheet.ToDataTable
- Method ExcelSheet.ToJson
- Method ExcelSheet.ToJson
Inherited Methods
public override sealed Int32 CompareTo(Object target) #Returns:
Int32Inherited from Enum
Parameters
- target Object
ToString 4 overloads
public override sealed String ToString(IFormatProvider provider) #Returns:
StringInherited from Enum
Obsolete("The provider argument is not used. Use ToString() instead.")Parameters
- provider IFormatProvider
public override sealed String ToString(String format, IFormatProvider provider) #Returns:
StringInherited from Enum
Obsolete("The provider argument is not used. Use ToString(String) instead.")Parameters
- format String
- provider IFormatProvider
Values
public const ExcelExecutionMode Automatic #Automatically choose between sequential and parallel execution based on thresholds.
Value:
0public const ExcelExecutionMode Sequential #Force single-threaded execution with no locking.
Value:
1public const ExcelExecutionMode Parallel #Compute work in parallel and apply results sequentially.
Value:
2