Table of Contents

Class LoadOptions

Namespace
SlapKit.Excel.Excel
Assembly
SlapKit.Excel.dll

A class that defines various aspects of a newly created workbook.

public class LoadOptions
Inheritance
LoadOptions
Inherited Members
Extension Methods

Properties

DefaultGraphicEngine

A graphics engine that will be used for workbooks without explicitly set engine.

public static IXLGraphicEngine? DefaultGraphicEngine { set; }

Property Value

IXLGraphicEngine

Dpi

DPI for the workbook. Default is 96.

public Point Dpi { get; set; }

Property Value

Point

Remarks

Used in various places, e.g. determining a physical size of an image without a DPI or to determine a size of a text in a cell.

GraphicEngine

Graphic engine used by the workbook.

public IXLGraphicEngine? GraphicEngine { get; set; }

Property Value

IXLGraphicEngine

RecalculateAllFormulas

Should all formulas in a workbook be recalculated during load? Default value is false.

public bool RecalculateAllFormulas { get; set; }

Property Value

bool