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 ExcelPageProperties
| Improve this Doc View SourceFile
The underlying data file that contains the sheet data
Declaration
public ExcelDataFile File { get; set; }Property Value
| Type | Description | 
|---|---|
| ExcelDataFile | 
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 | 
RowCount
How many rows are contained in this page
Declaration
public uint RowCount { get; set; }Property Value
| Type | Description | 
|---|---|
| System.UInt32 | 
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> | 
StartId
The start ID of the page
Declaration
public uint StartId { get; set; }Property Value
| Type | Description | 
|---|---|
| System.UInt32 |