Class ExcelData
Represents data that has been extracted from an Excel file.
Inherited Members
Namespace: DataWeb.Data.Exchange
Assembly: DataWeb.Core.dll
Syntax
public class ExcelData
Properties
Fields
Gets or sets a dictionary that maps field names to column indices.
Declaration
public Dictionary<string, int> Fields { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, int> |
Items
Gets or sets a list of dictionaries that map field names to row values.
Declaration
public List<Dictionary<string, string>> Items { get; set; }
Property Value
Type | Description |
---|---|
List<Dictionary<string, string>> |