IExcelDataWorkbook

IExcelDataWorkbook interface

Represents a workbook that provides access to Excel data for general use.

public interface IExcelDataWorkbook

Methods

NameDescription
GetCell(int, string)Retrieves a cell from the specified worksheet using its index and Excel-style cell name (e.g., “B2”).
GetCell(string, string)Retrieves a cell from the specified worksheet using Excel-style cell name (e.g., “B2”).
GetCell(int, int, int)Retrieves a cell from the specified worksheet using its index and cell coordinates.
GetCell(string, int, int)Retrieves a cell from the specified worksheet using its name and cell coordinates.
GetCells(string, bool)Retrieves a collection of cells from the workbook that match the specified formula.
GetChartsFromWorksheet(string)Retrieves a dictionary containing the indexes and names of all charts in the specified worksheet of an Excel workbook.
GetWorksheetNames()Retrieves the names of all worksheets contained in the Excel workbook.

See Also