Show / Hide Table of Contents

Class ExcelPage

Inheritance
System.Object
ExcelPage
Inherited Members
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: Lumina.Excel
Assembly: Lumina.dll
Syntax
public class ExcelPage

Properties

| Improve this Doc View Source

File

The underlying data file that contains the sheet data

Declaration
public ExcelDataFile File { get; set; }
Property Value
Type Description
ExcelDataFile
| Improve this Doc View Source

FilePath

The path to the data file (exd) that contains the rows for the current page

Declaration
public string FilePath { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

RowCount

How many rows are contained in this page

Declaration
public uint RowCount { get; set; }
Property Value
Type Description
System.UInt32
| Improve this Doc View Source

RowData

An index -> (rowid, offset) list which maps a local row index to where it is inside the current data page

Declaration
public Dictionary<uint, ExcelDataOffset> RowData { get; }
Property Value
Type Description
System.Collections.Generic.Dictionary<System.UInt32, ExcelDataOffset>
| Improve this Doc View Source

StartId

The start ID of the page

Declaration
public uint StartId { get; set; }
Property Value
Type Description
System.UInt32
  • Improve this Doc
  • View Source
Back to top Generated by DocFX