Show / Hide Table of Contents

Class CompatibilitySettings

Settings to stay compatible with older versions of EPPlus

Inheritance
object
CompatibilitySettings
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: OfficeOpenXml.Compatibility
Assembly: EPPlus.dll
Syntax
public class CompatibilitySettings

Properties

IsWorksheets1Based

If the worksheets collection of the ExcelWorkbook class is 1 based. This property can be set from appsettings.json file.

{
  "EPPlus": {
    "ExcelPackage": {
      "Compatibility": {
        "IsWorksheets1Based": true //Default and recommended value is false
      }
    }
  }
}
Declaration
public bool IsWorksheets1Based { get; set; }
Property Value
Type Description
bool
In this article
Back to top Generated by DocFX