Show / Hide Table of Contents

Class ToCollectionRangeOptions

Settings for the ToCollection method. ToCollection<T>()

Inheritance
System.Object
ToCollectionOptions
ToCollectionRangeOptions
Inherited Members
ToCollectionOptions.SetCustomHeaders(String[])
ToCollectionOptions.ConversionFailureStrategy
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OfficeOpenXml
Assembly: EPPlus.dll
Syntax
public class ToCollectionRangeOptions : ToCollectionOptions

Constructors

ToCollectionRangeOptions()

Constructor

Declaration
public ToCollectionRangeOptions()

Properties

DataIsTransposed

If the data is transposed or not

Declaration
public bool DataIsTransposed { get; set; }
Property Value
Type Description
System.Boolean

DataStartRow

The data start row in the range. A null value means the data rows starts direcly after the header row.

Declaration
public int? DataStartRow { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Default

A ToCollectionRangeOptions with default values.

Declaration
public static ToCollectionRangeOptions Default { get; }
Property Value
Type Description
ToCollectionRangeOptions

HeaderRow

0-based index of the Header row in the range, if applicable. A null value means there is no header row. See also: SetCustomHeaders(String[]) DataStartRow

Declaration
public int? HeaderRow { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
In This Article
Back to top Generated by DocFX