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
Boolean
In this article
Back to top Generated by DocFX