ActiveXLS v6.4.0 API Documentation

ActiveXLS
Class ExcelDocument

System.Object
  extended byActiveXLS.ExcelDocument

public class ExcelDocument
extends System.Object

The ExcelDocument class is the main class that contains methods to generate or read a Microsoft Excel file.


Constructor Summary
ExcelDocument()
          Defines an instance of the object that reads/writes Excel files.
ExcelDocument(int worksheetCount)
          Defines an instance of the object that reads/writes Excel files having a predefined number of worksheets.
ExcelDocument(int worksheetCount, int chartsheetCount)
          Defines an instance of the object that reads/writes Excel files having a predefined number of worksheets and chart sheets.
 
Method Summary
 ExcelDocument Clone()
          Creates and returns a copy of this object.
 void Dispose()
          Disposes any resources that it has allocated.
 void esd_addChart(ExcelChartSheet xlsChartSheet)
          Adds a chart to the sheet list.
 void esd_addChart(System.String sheetName)
          Adds a chart sheet having the specified sheet name to the sheet list.
 void esd_addChart(System.String sheetName, bool isSelected)
          Adds a chart sheet having the sheet name and selected option specified.
 void esd_addChart(System.String sheetName, bool isSelected, System.String formulaDataRange, int seriesType)
          Adds a chart sheet to the sheet list.
 void esd_addChart(System.String sheetName, System.String formulaDataRange, int seriesType)
          Adds a chart sheet to the sheet list.
 void esd_addWorksheet(ExcelWorksheet xlsWorksheet)
          Adds a worksheet to the sheet list.
 void esd_addWorksheet(System.String sheetName)
          Adds a worksheet having the specified worksheet name to the sheet list.
 void esd_addWorksheet(System.String sheetName, bool isSelected)
          Adds a worksheet having the worksheet name and selected option specified.
 System.String esd_getError()
          Returns the error generated during processing the file.
 ExcelOptions esd_getOptions()
          Returns the options of an Excel document, available in the main menu Tools/Options window.
 ExcelSheet esd_getSheet(System.String sheetName)
          Returns the sheet that has the specified name.
 ExcelSheet esd_getSheetAt(int index)
          Returns the sheet on the specified position.
 int esd_getSheetPosition(System.String sheetName)
          Returns the position in the sheet list of the sheet that has the specified name.
 void esd_insertChart(int index, ExcelChartSheet xlsChartSheet)
          Inserts a chart sheet in the sheet list on the specified position.
 void esd_insertChart(int index, System.String sheetName)
          Inserts a chart sheet having the specified sheet name in the sheet list on the specified position.
 void esd_insertChart(int index, System.String sheetName, bool isSelected)
          Inserts a chart sheet having the sheet name and selected option specified.
 void esd_insertChart(int index, System.String sheetName, bool isSelected, System.String formulaDataRange, int seriesType)
          Inserts a chart sheet in the sheet list on the specified position.
 void esd_insertChart(int index, System.String sheetName, System.String formulaDataRange, int seriesType)
          Inserts a chart sheet in the sheet list on the specified position.
 void esd_insertWorksheet(int index, ExcelWorksheet xlsWorksheet)
          Inserts a worksheet to the sheet list on the specified position.
 void esd_insertWorksheet(int index, System.String sheetName)
          Inserts a worksheet having the specified worksheet name to the sheet list on the specified position.
 void esd_insertWorksheet(int index, System.String sheetName, bool isSelected)
          Inserts a worksheet having the worksheet name and selected option specified.
 bool esd_IsExcel(System.IO.Stream f)
          Checks if the specified file is a Microsoft Excel document.
 bool esd_IsExcel(System.String sPath)
          Checks if the specified file is a Microsoft Excel document.
 bool esd_LoadCSVFile(System.IO.Stream f)
          Generates the document at the specified stream
Available for: Professional, Reader
 bool esd_LoadCSVFile(System.String sPath)
          Loads a specified CSV document
Available for: Professional, Reader
 bool esd_LoadHTMLFile(System.IO.Stream f)
          Loads the specified HTML file
Available for: Professional, Reader
 bool esd_LoadHTMLFile(System.String sPath)
          Loads the specified HTML file
Available for: Professional, Reader
 bool esd_LoadTemplateFile(System.IO.Stream f)
          Deprecated. As of ActiveXLS version 6.1, replaced by esd_LoadXLSFile(InputStream).
 bool esd_LoadTemplateFile(System.String sPath)
          Deprecated. As of ActiveXLS version 6.1, replaced by esd_LoadXLSFile(String).
 bool esd_LoadTXTFile(System.IO.Stream f, System.String sRowDelimiter, System.String sColumnDelimiter)
          Generates the document at the specified stream
Available for: Professional, Reader
 bool esd_LoadTXTFile(System.String sPath, System.String sRowDelimiter, System.String sColumnDelimiter)
          Loads a specified document
Available for: Professional, Reader
 bool esd_LoadXLSBFile(System.IO.Stream f)
          Loads the specified Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 bool esd_LoadXLSBFile(System.String sPath)
          Loads the specified Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 bool esd_LoadXLSFile(System.IO.Stream f)
          Loads a specified Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader
 bool esd_LoadXLSFile(System.String sPath)
          Loads a specified Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader
 bool esd_LoadXLSXFile(System.IO.Stream f)
          Loads the specified Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 bool esd_LoadXLSXFile(System.String sPath)
          Loads the specified Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 bool esd_LoadXMLSpreadsheetFile(System.IO.Stream f)
          Loads a specified XML Spreadsheet document
Available for: Professional, Reader
 bool esd_LoadXMLSpreadsheetFile(System.String sPath)
          Loads a specified XML Spreadsheet document
Available for: Professional, Reader
 List esd_ReadCSVFile_AsList(System.IO.Stream f)
          Reads the cell values from the specified CSV document
Available for: Professional, Reader
 List esd_ReadCSVFile_AsList(System.String sPath)
          Reads the cell values from the specified CSV document
Available for: Professional, Reader
 System.Data.DataSet esd_ReadCSVFile_AsDataSet(System.IO.Stream f)
          Reads the cell values from the specified CSV document
Available for: Professional, Reader
 System.Data.DataSet esd_ReadCSVFile_AsDataSet(System.String sPath)
          Reads the cell values from the specified CSV document
Available for: Professional, Reader
 List esd_ReadExcelWorksheet_AsList(ExcelWorksheet xlsWorksheet)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader
 List esd_ReadExcelWorksheet_AsList(ExcelWorksheet xlsWorksheet, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader
 List esd_ReadExcelWorksheet_AsList(ExcelWorksheet xlsWorksheet, System.String sRangeReference)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader
 List esd_ReadExcelWorksheet_AsList(System.String sheetName)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader
 List esd_ReadExcelWorksheet_AsList(System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader
 List esd_ReadExcelWorksheet_AsList(System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(ExcelWorksheet xlsWorksheet)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(ExcelWorksheet xlsWorksheet, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(ExcelWorksheet xlsWorksheet, System.String sRangeReference)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(System.String sheetName)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f, ExcelWorksheet xlsWorksheet)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f, ExcelWorksheet xlsWorksheet, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f, ExcelWorksheet xlsWorksheet, System.String sRangeReference)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f, System.String sheetName)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath, ExcelWorksheet xlsWorksheet)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath, ExcelWorksheet xlsWorksheet, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath, ExcelWorksheet xlsWorksheet, System.String sRangeReference)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath, System.String sheetName)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader
 List esd_ReadTXTFile_AsList(System.IO.Stream f, System.String sRowDelimiter, System.String sColumnDelimiter)
          Reads the cell values from the specified TXT document
Available for: Professional, Reader
 List esd_ReadTXTFile_AsList(System.String sPath, System.String sRowDelimiter, System.String sColumnDelimiter)
          Reads the cell values from the specified TXT document
Available for: Professional, Reader
 System.Data.DataSet esd_ReadTXTFile_AsDataSet(System.IO.Stream f, System.String sRowDelimiter, System.String sColumnDelimiter)
          Reads the cell values from the specified TXT document
Available for: Professional, Reader
 System.Data.DataSet esd_ReadTXTFile_AsDataSet(System.String sPath, System.String sRowDelimiter, System.String sColumnDelimiter)
          Reads the cell values from the specified TXT document
Available for: Professional, Reader
 List esd_ReadXLSActiveSheet_AsList(System.IO.Stream f)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader
 List esd_ReadXLSActiveSheet_AsList(System.String sPath)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSActiveSheet_AsDataSet(System.IO.Stream f)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSActiveSheet_AsDataSet(System.String sPath)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader
 List esd_ReadXLSBActiveSheet_AsList(System.IO.Stream f)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 List esd_ReadXLSBActiveSheet_AsList(System.String sPath)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSBActiveSheet_AsDataSet(System.IO.Stream f)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSBActiveSheet_AsDataSet(System.String path)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 List esd_ReadXLSBSheet_AsList(System.IO.Stream f, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 List esd_ReadXLSBSheet_AsList(System.IO.Stream f, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader
 List esd_ReadXLSBSheet_AsList(System.IO.Stream f, System.String sheetName, System.String rangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader
 List esd_ReadXLSBSheet_AsList(System.String path, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 List esd_ReadXLSBSheet_AsList(System.String path, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader
 List esd_ReadXLSBSheet_AsList(System.String path, System.String sheetName, System.String rangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.IO.Stream f, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.IO.Stream f, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.IO.Stream f, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.String path, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.String path, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.String path, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader
 bool esd_ReadXLSBSheet_AsXML(System.IO.Stream fXML, System.IO.Stream fXLSB, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSBSheet_AsXML(System.IO.Stream fXML, System.IO.Stream fXLSB, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified range of the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSBSheet_AsXML(System.IO.Stream fXML, System.IO.Stream fXLSB, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSBSheet_AsXML(System.String XMLFilePath, System.String XLSBFilePath, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSBSheet_AsXML(System.String XMLFilePath, System.String XLSBFilePath, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSBSheet_AsXML(System.String XMLFilePath, System.String XLSBFilePath, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 List esd_ReadXLSSheet_AsList(System.IO.Stream f, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader
 List esd_ReadXLSSheet_AsList(System.IO.Stream f, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a List object
Available for: Professional, Reader
 List esd_ReadXLSSheet_AsList(System.IO.Stream f, System.String sheetName, System.String rangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a List object
Available for: Professional, Reader
 List esd_ReadXLSSheet_AsList(System.String path, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader
 List esd_ReadXLSSheet_AsList(System.String path, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a List object
Available for: Professional, Reader
 List esd_ReadXLSSheet_AsList(System.String path, System.String sheetName, System.String rangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a List object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.IO.Stream f, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.IO.Stream f, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.IO.Stream f, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.String path, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.String path, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.String path, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a DataSet object
Available for: Professional, Reader
 bool esd_ReadXLSSheet_AsXML(System.IO.Stream fXML, System.IO.Stream fXLS, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSSheet_AsXML(System.IO.Stream fXML, System.IO.Stream fXLS, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified range of the specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSSheet_AsXML(System.IO.Stream fXML, System.IO.Stream fXLS, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSSheet_AsXML(System.String XMLFilePath, System.String XLSFilePath, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSSheet_AsXML(System.String XMLFilePath, System.String XLSFilePath, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSSheet_AsXML(System.String XMLFilePath, System.String XLSFilePath, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader
 List esd_ReadXLSXActiveSheet_AsList(System.IO.Stream f)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 List esd_ReadXLSXActiveSheet_AsList(System.String sPath)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSXActiveSheet_AsDataSet(System.IO.Stream f)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSXActiveSheet_AsDataSet(System.String path)
          Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 List esd_ReadXLSXSheet_AsList(System.IO.Stream f, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 List esd_ReadXLSXSheet_AsList(System.IO.Stream f, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader
 List esd_ReadXLSXSheet_AsList(System.IO.Stream f, System.String sheetName, System.String rangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader
 List esd_ReadXLSXSheet_AsList(System.String path, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 List esd_ReadXLSXSheet_AsList(System.String path, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader
 List esd_ReadXLSXSheet_AsList(System.String path, System.String sheetName, System.String rangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.IO.Stream f, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.IO.Stream f, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.IO.Stream f, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.String path, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.String path, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.String path, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader
 bool esd_ReadXLSXSheet_AsXML(System.IO.Stream fXML, System.IO.Stream fXLSX, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSXSheet_AsXML(System.IO.Stream fXML, System.IO.Stream fXLSX, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified range of the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSXSheet_AsXML(System.IO.Stream fXML, System.IO.Stream fXLSX, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSXSheet_AsXML(System.String XMLFilePath, System.String XLSXFilePath, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSXSheet_AsXML(System.String XMLFilePath, System.String XLSXFilePath, System.String sheetName, int startRow, int startColumn, int endRow, int endColumn)
          Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 bool esd_ReadXLSXSheet_AsXML(System.String XMLFilePath, System.String XLSXFilePath, System.String sheetName, System.String sRangeReference)
          Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader
 List esd_ReadXMLSpreadsheet_AsList(System.IO.Stream f, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel XML Spreadsheet into a List object
Available for: Professional, Reader
 List esd_ReadXMLSpreadsheet_AsList(System.String sPath, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel XML Spreadsheet into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXMLSpreadsheet_AsDataSet(System.IO.Stream f, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel XML Spreadsheet into a DataSet object
Available for: Professional, Reader
 System.Data.DataSet esd_ReadXMLSpreadsheet_AsDataSet(System.String sPath, System.String sheetName)
          Reads the cell values from the specified worksheet of the Microsoft Excel XML Spreadsheet into a DataSet object
Available for: Professional, Reader
 void esd_removeSheet(int index)
          Removes a sheet from the sheet list on the specified position.
 void esd_removeSheet(System.String sheetName)
          Removes the sheet that has the specified name from the sheet list.
 void esd_removeVBMacros()
          Removes the VB project and macros if any.
 void esd_setOptions(ExcelOptions xlsOptions)
          Sets the options of an Excel document, available in the main menu Tools/Options window.
 void esd_WriteCSVFile(System.IO.Stream f, System.String sSheetName)
          Generates the CSV at the specified stream
Available for: Professional, Writer
 void esd_WriteCSVFile(System.String sPath, System.String sSheetName)
          Generates the CSV document at the specified path
Available for: Professional, Writer
 void esd_WriteExcelFile(System.IO.Stream f)
          Deprecated. As of ActiveXLS version 6.1, replaced by esd_WriteXLSFile(OutputStream).
 void esd_WriteExcelFile(System.String sPath)
          Deprecated. As of ActiveXLS version 6.1, replaced by esd_WriteXLSFile(String).
 void esd_WriteHTMLFile(System.IO.Stream f, System.String sSheetName)
          Generates the HTML at the specified stream
Available for: Professional, Writer
 void esd_WriteHTMLFile(System.String sPath, System.String sSheetName)
          Generates the HTML document at the specified path
Available for: Professional, Writer
 void esd_WriteTXTFile(System.IO.Stream f, System.String sSheetName, System.String sRowDelimiter, System.String sColumnDelimiter)
          Generates the document at the specified stream
Available for: Professional, Writer
 void esd_WriteTXTFile(System.String sPath, System.String sSheetName, System.String sRowDelimiter, System.String sColumnDelimiter)
          Generates the TXT document at the specified path
Available for: Professional, Writer
 void esd_WriteXLSBFile_FromList(System.IO.Stream f, List list, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile_FromList(System.IO.Stream f, List list, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile_FromList(System.IO.Stream f, List list, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile_FromList(System.String sPath, List list, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile_FromList(System.String sPath, List list, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile_FromList(System.String sPath, List list, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile_FromDataSet(System.IO.Stream f, System.Data.DataSet ds, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile_FromDataSet(System.IO.Stream f, System.Data.DataSet ds, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile_FromDataSet(System.IO.Stream f, System.Data.DataSet ds, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile_FromDataSet(System.String sPath, System.Data.DataSet ds, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile_FromDataSet(System.String sPath, System.Data.DataSet ds, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile_FromDataSet(System.String sPath, System.Data.DataSet ds, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSBFile(System.IO.Stream f)
          Generates the Microsoft Excel document (Office 2007 binary file format) at the specified stream
Available for: Professional, Writer
 void esd_WriteXLSBFile(System.String sPath)
          Generates the Microsoft Excel Office2007 binary document at the specified path
Available for: Professional, Writer
 void esd_WriteXLSFile_FromList(System.IO.Stream f, List list, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile_FromList(System.IO.Stream f, List list, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile_FromList(System.IO.Stream f, List list, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile_FromList(System.String sPath, List list, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile_FromList(System.String sPath, List list, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile_FromList(System.String sPath, List list, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile_FromDataSet(System.IO.Stream f, System.Data.DataSet ds, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile_FromDataSet(System.IO.Stream f, System.Data.DataSet ds, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile_FromDataSet(System.IO.Stream f, System.Data.DataSet ds, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile_FromDataSet(System.String sPath, System.Data.DataSet ds, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile_FromDataSet(System.String sPath, System.Data.DataSet ds, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile_FromDataSet(System.String sPath, System.Data.DataSet ds, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSFile(System.IO.Stream f)
          Generates the Microsoft Excel document (Office 97-2003) at the specified stream
Available for: Professional, Writer
 void esd_WriteXLSFile(System.String sPath)
          Generates the Microsoft Excel document (Office 97-2003) at the specified path
Available for: Professional, Writer
 void esd_WriteXLSXFile_FromList(System.IO.Stream f, List list, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile_FromList(System.IO.Stream f, List list, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile_FromList(System.IO.Stream f, List list, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile_FromList(System.String sPath, List list, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile_FromList(System.String sPath, List list, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile_FromList(System.String sPath, List list, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile_FromDataSet(System.IO.Stream f, System.Data.DataSet ds, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile_FromDataSet(System.IO.Stream f, System.Data.DataSet ds, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile_FromDataSet(System.IO.Stream f, System.Data.DataSet ds, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile_FromDataSet(System.String sPath, System.Data.DataSet ds, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile_FromDataSet(System.String sPath, System.Data.DataSet ds, int startRow, int startCol, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile_FromDataSet(System.String sPath, System.Data.DataSet ds, System.String startCellReference, ExcelAutoFormat xlsAutoFormat, System.String sSheetName)
          Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer
 void esd_WriteXLSXFile(System.IO.Stream f)
          Generates the Microsoft Excel document (Office 2007 file format) at the specified stream
Available for: Professional, Writer
 void esd_WriteXLSXFile(System.String sPath)
          Generates the Microsoft Excel Office2007 document at the specified path
Available for: Professional, Writer
 void esd_WriteXMLFile(System.IO.Stream f)
          Generates the XML document at the specified stream
Available for: Professional, Writer
 void esd_WriteXMLFile(System.String sPath)
          Generates the XML document at the specified path
Available for: Professional, Writer
 int getCurrentSheet()
          Returns the current sheet displayed when the document is loaded in Microsoft Excel.
 DocumentSummaryInformation getDocumentSummaryInformation()
          Returns the document summary information of an Excel document.
 ExternalLinks getExternalLinks()
          Returns the list of the external links from the formulas inside the Excel document.
 SummaryInformation getSummaryInformation()
          Returns the summary information of an Excel document.
 void setCurrentSheet(int tabIndex)
          Sets the current sheet displayed when the document is loaded in Microsoft Excel.
 void setDocumentSummaryInformation(DocumentSummaryInformation documentSummaryInformation)
          Sets the document summary information of an Excel document.
 void setSummaryInformation(SummaryInformation summaryInformation)
          Sets the summary information of an Excel document.
 int SheetCount()
          Returns the number of sheets in the workbook.
 

Constructor Detail

ExcelDocument

public ExcelDocument()
Defines an instance of the object that reads/writes Excel files.


ExcelDocument

public ExcelDocument(int worksheetCount)
Defines an instance of the object that reads/writes Excel files having a predefined number of worksheets.

Parameters:
worksheetCount - the number of worksheets.

ExcelDocument

public ExcelDocument(int worksheetCount,
                     int chartsheetCount)
Defines an instance of the object that reads/writes Excel files having a predefined number of worksheets and chart sheets.

Parameters:
worksheetCount - the number of worksheets.
chartsheetCount - the number of chart sheets.
Method Detail

esd_getError

public System.String esd_getError()
Returns the error generated during processing the file.

Returns:
the error generated during processing the file.

SheetCount

public int SheetCount()
Returns the number of sheets in the workbook.

Returns:
the number of sheets in the workbook
See Also:
esd_addWorksheet(ActiveXLS.ExcelWorksheet), esd_removeSheet(int), esd_getSheetAt(int), esd_getSheet(System.String)

esd_IsExcel

public bool esd_IsExcel(System.String sPath)
                    
Checks if the specified file is a Microsoft Excel document.

Parameters:
sPath - the path of the file.
Returns:
true if the file is an Excel document, false otherwise
Throws:
System.Exception

esd_IsExcel

public bool esd_IsExcel(System.IO.Stream f)
                    
Checks if the specified file is a Microsoft Excel document.

Parameters:
f - the stream that points the file.
Returns:
true if the file is an Excel document, false otherwise
Throws:
System.Exception

esd_LoadTemplateFile

public bool esd_LoadTemplateFile(System.String sPath)
                             
Deprecated. As of ActiveXLS version 6.1, replaced by esd_LoadXLSFile(String).

Loads a specified Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
sPath - the path to the Excel document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadXLSFile

public bool esd_LoadXLSFile(System.String sPath)
                        
Loads a specified Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
sPath - the path to the Excel document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadTemplateFile

public bool esd_LoadTemplateFile(System.IO.Stream f)
                             
Deprecated. As of ActiveXLS version 6.1, replaced by esd_LoadXLSFile(InputStream).

Loads a specified Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadXLSFile

public bool esd_LoadXLSFile(System.IO.Stream f)
                        
Loads a specified Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadXLSXFile

public bool esd_LoadXLSXFile(System.String sPath)
                         
Loads the specified Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
sPath - the path to the Excel document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadXLSXFile

public bool esd_LoadXLSXFile(System.IO.Stream f)
                         
Loads the specified Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadXLSBFile

public bool esd_LoadXLSBFile(System.String sPath)
                         
Loads the specified Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
sPath - the path to the Excel document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadXLSBFile

public bool esd_LoadXLSBFile(System.IO.Stream f)
                         
Loads the specified Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadTXTFile_AsList

public List esd_ReadTXTFile_AsList(System.String sPath,
                                   System.String sRowDelimiter,
                                   System.String sColumnDelimiter)
                            
Reads the cell values from the specified TXT document
Available for: Professional, Reader

Parameters:
sPath - the path to the TXT document.
sRowDelimiter - the row delimiter.
sColumnDelimiter - the column delimiter.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadTXTFile_AsList

public List esd_ReadTXTFile_AsList(System.IO.Stream f,
                                   System.String sRowDelimiter,
                                   System.String sColumnDelimiter)
                            
Reads the cell values from the specified TXT document
Available for: Professional, Reader

Parameters:
f - the stream that points to the TXT document.
sRowDelimiter - the row delimiter.
sColumnDelimiter - the column delimiter.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadCSVFile_AsList

public List esd_ReadCSVFile_AsList(System.String sPath)
                            
Reads the cell values from the specified CSV document
Available for: Professional, Reader

Parameters:
sPath - the path to the CSV document.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadCSVFile_AsList

public List esd_ReadCSVFile_AsList(System.IO.Stream f)
                            
Reads the cell values from the specified CSV document
Available for: Professional, Reader

Parameters:
f - the stream that points to the CSV document.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsXML

public bool esd_ReadXLSSheet_AsXML(System.String XMLFilePath,
                                      System.String XLSFilePath,
                                      System.String sheetName,
                                      int startRow,
                                      int startColumn,
                                      int endRow,
                                      int endColumn)
                               
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
XLSFilePath - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSSheet_AsXML

public bool esd_ReadXLSSheet_AsXML(System.String XMLFilePath,
                                      System.String XLSFilePath,
                                      System.String sheetName)
                               
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
XLSFilePath - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSSheet_AsXML

public bool esd_ReadXLSSheet_AsXML(System.String XMLFilePath,
                                      System.String XLSFilePath,
                                      System.String sheetName,
                                      System.String sRangeReference)
                               
Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
XLSFilePath - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSSheet_AsXML

public bool esd_ReadXLSSheet_AsXML(System.IO.Stream fXML,
                                      System.IO.Stream fXLS,
                                      System.String sheetName,
                                      int startRow,
                                      int startColumn,
                                      int endRow,
                                      int endColumn)
                               
Reads the cell values from the specified range of the specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader

Parameters:
fXML - the stream that points to the XML document.
fXLS - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSSheet_AsXML

public bool esd_ReadXLSSheet_AsXML(System.IO.Stream fXML,
                                      System.IO.Stream fXLS,
                                      System.String sheetName)
                               
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader

Parameters:
fXML - the stream that points to the XML document.
fXLS - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSSheet_AsXML

public bool esd_ReadXLSSheet_AsXML(System.IO.Stream fXML,
                                      System.IO.Stream fXLS,
                                      System.String sheetName,
                                      System.String sRangeReference)
                               
Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 97-2003) and writes them into an XML document
Available for: Professional, Reader

Parameters:
fXML - the stream that points to the XML document.
fXLS - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f,
                                            System.String sheetName,
                                            int startRow,
                                            int startColumn,
                                            int endRow,
                                            int endColumn)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
f - the stream that points to the XML document.
sheetName - the name of the ExcelWorksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath,
                                            System.String sheetName,
                                            int startRow,
                                            int startColumn,
                                            int endRow,
                                            int endColumn)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
sheetName - the name of the ExcelWorksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f,
                                            System.String sheetName)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
f - the stream that points to the XML document.
sheetName - the name of the ExcelWorksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath,
                                            System.String sheetName)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
sheetName - the name of the ExcelWorksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f,
                                            System.String sheetName,
                                            System.String sRangeReference)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
f - the stream that points to the XML document.
sheetName - the name of the ExcelWorksheet that will be read.
sRangeReference - the range of cells (from ExcelWorksheet named sheetName) that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath,
                                            System.String sheetName,
                                            System.String sRangeReference)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
sheetName - the name of the ExcelWorksheet that will be read.
sRangeReference - the range of cells (from ExcelWorksheet named sheetName) that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f,
                                            ExcelWorksheet xlsWorksheet,
                                            int startRow,
                                            int startColumn,
                                            int endRow,
                                            int endColumn)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
f - the stream that points to the XML document.
xlsWorksheet - the ExcelWorksheet object that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath,
                                            ExcelWorksheet xlsWorksheet,
                                            int startRow,
                                            int startColumn,
                                            int endRow,
                                            int endColumn)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
xlsWorksheet - the ExcelWorksheet object that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f,
                                            ExcelWorksheet xlsWorksheet)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
f - the stream that points to the XML document.
xlsWorksheet - the ExcelWorksheet object that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath,
                                            ExcelWorksheet xlsWorksheet)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
xlsWorksheet - the ExcelWorksheet object that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.IO.Stream f,
                                            ExcelWorksheet xlsWorksheet,
                                            System.String sRangeReference)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
f - the stream that points to the XML document.
xlsWorksheet - the ExcelWorksheet object that will be read.
sRangeReference - the range of cells (from the xlsWorksheet object) that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadExcelWorksheet_AsXML

public bool esd_ReadExcelWorksheet_AsXML(System.String XMLFilePath,
                                            ExcelWorksheet xlsWorksheet,
                                            System.String sRangeReference)
                                     
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
xlsWorksheet - the ExcelWorksheet object that will be read.
sRangeReference - the range of cells (from the xlsWorksheet object) that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadTXTFile_AsDataSet

public System.Data.DataSet esd_ReadTXTFile_AsDataSet(System.String sPath,
                                                      System.String sRowDelimiter,
                                                      System.String sColumnDelimiter)
                                               
Reads the cell values from the specified TXT document
Available for: Professional, Reader

Parameters:
sPath - the path to the TXT document.
sRowDelimiter - the row delimiter.
sColumnDelimiter - the column delimiter.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadTXTFile_AsDataSet

public System.Data.DataSet esd_ReadTXTFile_AsDataSet(System.IO.Stream f,
                                                      System.String sRowDelimiter,
                                                      System.String sColumnDelimiter)
                                               
Reads the cell values from the specified TXT document
Available for: Professional, Reader

Parameters:
f - the stream that points to the TXT document.
sRowDelimiter - the row delimiter.
sColumnDelimiter - the column delimiter.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadCSVFile_AsDataSet

public System.Data.DataSet esd_ReadCSVFile_AsDataSet(System.String sPath)
                                               
Reads the cell values from the specified CSV document
Available for: Professional, Reader

Parameters:
sPath - the path to the CSV document.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadCSVFile_AsDataSet

public System.Data.DataSet esd_ReadCSVFile_AsDataSet(System.IO.Stream f)
                                               
Reads the cell values from the specified CSV document
Available for: Professional, Reader

Parameters:
f - the stream that points to the CSV document.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXMLSpreadsheet_AsDataSet

public System.Data.DataSet esd_ReadXMLSpreadsheet_AsDataSet(System.String sPath,
                                                             System.String sheetName)
                                                      
Reads the cell values from the specified worksheet of the Microsoft Excel XML Spreadsheet into a DataSet object
Available for: Professional, Reader

Parameters:
sPath - the path to the Microsoft Excel XML Spreadsheet.
sheetName - the name of the worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXMLSpreadsheet_AsDataSet

public System.Data.DataSet esd_ReadXMLSpreadsheet_AsDataSet(System.IO.Stream f,
                                                             System.String sheetName)
                                                      
Reads the cell values from the specified worksheet of the Microsoft Excel XML Spreadsheet into a DataSet object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel XML Spreadsheet document.
sheetName - the name of the worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXMLSpreadsheet_AsList

public List esd_ReadXMLSpreadsheet_AsList(System.String sPath,
                                          System.String sheetName)
                                   
Reads the cell values from the specified worksheet of the Microsoft Excel XML Spreadsheet into a DataSet object
Available for: Professional, Reader

Parameters:
sPath - the path to the Microsoft Excel XML Spreadsheet.
sheetName - the name of the worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXMLSpreadsheet_AsList

public List esd_ReadXMLSpreadsheet_AsList(System.IO.Stream f,
                                          System.String sheetName)
                                   
Reads the cell values from the specified worksheet of the Microsoft Excel XML Spreadsheet into a List object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel XML Spreadsheet document.
sheetName - the name of the worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsDataSet

public System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(ExcelWorksheet xlsWorksheet,
                                                             int startRow,
                                                             int startColumn,
                                                             int endRow,
                                                             int endColumn)
                                                      
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader

Parameters:
xlsWorksheet - the ExcelWorksheet object that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsDataSet

public System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(ExcelWorksheet xlsWorksheet)
                                                      
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader

Parameters:
xlsWorksheet - the ExcelWorksheet object that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsDataSet

public System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(ExcelWorksheet xlsWorksheet,
                                                             System.String sRangeReference)
                                                      
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader

Parameters:
xlsWorksheet - the ExcelWorksheet object that will be read.
sRangeReference - the range of cells (from the xlsWorksheet object) that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsDataSet

public System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(System.String sheetName,
                                                             int startRow,
                                                             int startColumn,
                                                             int endRow,
                                                             int endColumn)
                                                      
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader

Parameters:
sheetName - the name of the ExcelWorksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsDataSet

public System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(System.String sheetName)
                                                      
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader

Parameters:
sheetName - the name of the ExcelWorksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsDataSet

public System.Data.DataSet esd_ReadExcelWorksheet_AsDataSet(System.String sheetName,
                                                             System.String sRangeReference)
                                                      
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a DataSet object
Available for: Professional, Reader

Parameters:
sheetName - the name of the ExcelWorksheet that will be read.
sRangeReference - the range of cells (from ExcelWorksheet named sheetName) that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsList

public List esd_ReadExcelWorksheet_AsList(ExcelWorksheet xlsWorksheet,
                                          int startRow,
                                          int startColumn,
                                          int endRow,
                                          int endColumn)
                                   
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader

Parameters:
xlsWorksheet - the ExcelWorksheet object that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsList

public List esd_ReadExcelWorksheet_AsList(ExcelWorksheet xlsWorksheet)
                                   
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader

Parameters:
xlsWorksheet - the ExcelWorksheet object that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsList

public List esd_ReadExcelWorksheet_AsList(ExcelWorksheet xlsWorksheet,
                                          System.String sRangeReference)
                                   
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader

Parameters:
xlsWorksheet - the ExcelWorksheet object that will be read.
sRangeReference - the range of cells (from the xlsWorksheet object) that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsList

public List esd_ReadExcelWorksheet_AsList(System.String sheetName,
                                          int startRow,
                                          int startColumn,
                                          int endRow,
                                          int endColumn)
                                   
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader

Parameters:
sheetName - the name of the ExcelWorksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsList

public List esd_ReadExcelWorksheet_AsList(System.String sheetName)
                                   
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader

Parameters:
sheetName - the name of the ExcelWorksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadExcelWorksheet_AsList

public List esd_ReadExcelWorksheet_AsList(System.String sheetName,
                                          System.String sRangeReference)
                                   
Reads the cell values from the specified ExcelWorksheet of the ActiveXLS ExcelDocument into a List object
Available for: Professional, Reader

Parameters:
sheetName - the name of the ExcelWorksheet that will be read.
sRangeReference - the range of cells (from ExcelWorksheet named sheetName) that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsList

public List esd_ReadXLSSheet_AsList(System.String path,
                                    System.String sheetName)
                             
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsList

public List esd_ReadXLSSheet_AsList(System.IO.Stream f,
                                    System.String sheetName)
                             
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
f - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsList

public List esd_ReadXLSSheet_AsList(System.String path,
                                    System.String sheetName,
                                    int startRow,
                                    int startColumn,
                                    int endRow,
                                    int endColumn)
                             
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a List object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsList

public List esd_ReadXLSSheet_AsList(System.IO.Stream f,
                                    System.String sheetName,
                                    int startRow,
                                    int startColumn,
                                    int endRow,
                                    int endColumn)
                             
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a List object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsList

public List esd_ReadXLSSheet_AsList(System.String path,
                                    System.String sheetName,
                                    System.String rangeReference)
                             
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a List object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
rangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsList

public List esd_ReadXLSSheet_AsList(System.IO.Stream f,
                                    System.String sheetName,
                                    System.String rangeReference)
                             
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a List object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
rangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.String path,
                                                       System.String sheetName,
                                                       int startRow,
                                                       int startColumn,
                                                       int endRow,
                                                       int endColumn)
                                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a DataSet object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.IO.Stream f,
                                                       System.String sheetName,
                                                       int startRow,
                                                       int startColumn,
                                                       int endRow,
                                                       int endColumn)
                                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a DataSet object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.String path,
                                                       System.String sheetName,
                                                       System.String sRangeReference)
                                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a DataSet object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.IO.Stream f,
                                                       System.String sheetName,
                                                       System.String sRangeReference)
                                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003) into a DataSet object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.String path,
                                                       System.String sheetName)
                                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSSheet_AsDataSet(System.IO.Stream f,
                                                       System.String sheetName)
                                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSActiveSheet_AsList

public List esd_ReadXLSActiveSheet_AsList(System.String sPath)
                                   
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
sPath - the path to the Excel document.
Returns:
a List object with the content of the excel file. Every row is another List object element in the first one.
Throws:
System.Exception

esd_ReadXLSActiveSheet_AsList

public List esd_ReadXLSActiveSheet_AsList(System.IO.Stream f)
                                   
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
Returns:
a List object with the content of the excel file. Every row is another List object element in the first one.
Throws:
System.Exception

esd_ReadXLSActiveSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSActiveSheet_AsDataSet(System.String sPath)
                                                      
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
sPath - the path to the Excel document.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSActiveSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSActiveSheet_AsDataSet(System.IO.Stream f)
                                                      
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 97-2003)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.String path,
                                                        System.String sheetName,
                                                        int startRow,
                                                        int startColumn,
                                                        int endRow,
                                                        int endColumn)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.IO.Stream f,
                                                        System.String sheetName,
                                                        int startRow,
                                                        int startColumn,
                                                        int endRow,
                                                        int endColumn)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.String path,
                                                        System.String sheetName,
                                                        System.String sRangeReference)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.IO.Stream f,
                                                        System.String sheetName,
                                                        System.String sRangeReference)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.String path,
                                                        System.String sheetName)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSXSheet_AsDataSet(System.IO.Stream f,
                                                        System.String sheetName)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSXActiveSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSXActiveSheet_AsDataSet(System.String path)
                                                       
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSXActiveSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSXActiveSheet_AsDataSet(System.IO.Stream f)
                                                       
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsList

public List esd_ReadXLSXSheet_AsList(System.String path,
                                     System.String sheetName)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsList

public List esd_ReadXLSXSheet_AsList(System.IO.Stream f,
                                     System.String sheetName)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
f - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsList

public List esd_ReadXLSXSheet_AsList(System.String path,
                                     System.String sheetName,
                                     int startRow,
                                     int startColumn,
                                     int endRow,
                                     int endColumn)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsList

public List esd_ReadXLSXSheet_AsList(System.IO.Stream f,
                                     System.String sheetName,
                                     int startRow,
                                     int startColumn,
                                     int endRow,
                                     int endColumn)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsList

public List esd_ReadXLSXSheet_AsList(System.String path,
                                     System.String sheetName,
                                     System.String rangeReference)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
rangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSXSheet_AsList

public List esd_ReadXLSXSheet_AsList(System.IO.Stream f,
                                     System.String sheetName,
                                     System.String rangeReference)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
rangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSXActiveSheet_AsList

public List esd_ReadXLSXActiveSheet_AsList(System.String sPath)
                                    
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
sPath - the path to the Excel document.
Returns:
a List object with the content of the excel file. Every row is another List object element in the first one.
Throws:
System.Exception

esd_ReadXLSXActiveSheet_AsList

public List esd_ReadXLSXActiveSheet_AsList(System.IO.Stream f)
                                    
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
Returns:
a List object with the content of the excel file. Every row is another List object element in the first one.
Throws:
System.Exception

esd_ReadXLSXSheet_AsXML

public bool esd_ReadXLSXSheet_AsXML(System.String XMLFilePath,
                                       System.String XLSXFilePath,
                                       System.String sheetName,
                                       int startRow,
                                       int startColumn,
                                       int endRow,
                                       int endColumn)
                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
XLSXFilePath - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSXSheet_AsXML

public bool esd_ReadXLSXSheet_AsXML(System.String XMLFilePath,
                                       System.String XLSXFilePath,
                                       System.String sheetName)
                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
XLSXFilePath - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSXSheet_AsXML

public bool esd_ReadXLSXSheet_AsXML(System.String XMLFilePath,
                                       System.String XLSXFilePath,
                                       System.String sheetName,
                                       System.String sRangeReference)
                                
Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
XLSXFilePath - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSXSheet_AsXML

public bool esd_ReadXLSXSheet_AsXML(System.IO.Stream fXML,
                                       System.IO.Stream fXLSX,
                                       System.String sheetName,
                                       int startRow,
                                       int startColumn,
                                       int endRow,
                                       int endColumn)
                                
Reads the cell values from the specified range of the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
fXML - the stream that points to the XML document.
fXLSX - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSXSheet_AsXML

public bool esd_ReadXLSXSheet_AsXML(System.IO.Stream fXML,
                                       System.IO.Stream fXLSX,
                                       System.String sheetName)
                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
fXML - the stream that points to the XML document.
fXLSX - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSXSheet_AsXML

public bool esd_ReadXLSXSheet_AsXML(System.IO.Stream fXML,
                                       System.IO.Stream fXLSX,
                                       System.String sheetName,
                                       System.String sRangeReference)
                                
Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
fXML - the stream that points to the XML document.
fXLSX - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSBSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.String path,
                                                        System.String sheetName,
                                                        int startRow,
                                                        int startColumn,
                                                        int endRow,
                                                        int endColumn)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSBSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.IO.Stream f,
                                                        System.String sheetName,
                                                        int startRow,
                                                        int startColumn,
                                                        int endRow,
                                                        int endColumn)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSBSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.String path,
                                                        System.String sheetName,
                                                        System.String sRangeReference)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSBSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.IO.Stream f,
                                                        System.String sheetName,
                                                        System.String sRangeReference)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a DataSet object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSBSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.String path,
                                                        System.String sheetName)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSBSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSBSheet_AsDataSet(System.IO.Stream f,
                                                        System.String sheetName)
                                                 
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSBSheet_AsList

public List esd_ReadXLSBSheet_AsList(System.String path,
                                     System.String sheetName)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSBSheet_AsList

public List esd_ReadXLSBSheet_AsList(System.IO.Stream f,
                                     System.String sheetName)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
f - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSBSheet_AsList

public List esd_ReadXLSBSheet_AsList(System.String path,
                                     System.String sheetName,
                                     int startRow,
                                     int startColumn,
                                     int endRow,
                                     int endColumn)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSBSheet_AsList

public List esd_ReadXLSBSheet_AsList(System.IO.Stream f,
                                     System.String sheetName,
                                     int startRow,
                                     int startColumn,
                                     int endRow,
                                     int endColumn)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSBSheet_AsList

public List esd_ReadXLSBSheet_AsList(System.String path,
                                     System.String sheetName,
                                     System.String rangeReference)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
rangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSBSheet_AsList

public List esd_ReadXLSBSheet_AsList(System.IO.Stream f,
                                     System.String sheetName,
                                     System.String rangeReference)
                              
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) into a List object
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
sheetName - the name of the worksheet that will be read.
rangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
a List that contains the cell values
Throws:
System.Exception

esd_ReadXLSBActiveSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSBActiveSheet_AsDataSet(System.String path)
                                                       
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
path - the path to the Excel document.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSBActiveSheet_AsDataSet

public System.Data.DataSet esd_ReadXLSBActiveSheet_AsDataSet(System.IO.Stream f)
                                                       
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
Returns:
a DataSet that contains the cell values
Throws:
System.Exception

esd_ReadXLSBActiveSheet_AsList

public List esd_ReadXLSBActiveSheet_AsList(System.String sPath)
                                    
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
sPath - the path to the Excel document.
Returns:
a List object with the content of the excel file. Every row is another List object element in the first one.
Throws:
System.Exception

esd_ReadXLSBActiveSheet_AsList

public List esd_ReadXLSBActiveSheet_AsList(System.IO.Stream f)
                                    
Reads the cell values from the current worksheet of the Microsoft Excel document (Office 2007 file format)
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel document.
Returns:
a List object with the content of the excel file. Every row is another List object element in the first one.
Throws:
System.Exception

esd_ReadXLSBSheet_AsXML

public bool esd_ReadXLSBSheet_AsXML(System.String XMLFilePath,
                                       System.String XLSBFilePath,
                                       System.String sheetName,
                                       int startRow,
                                       int startColumn,
                                       int endRow,
                                       int endColumn)
                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
XLSBFilePath - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSBSheet_AsXML

public bool esd_ReadXLSBSheet_AsXML(System.String XMLFilePath,
                                       System.String XLSBFilePath,
                                       System.String sheetName)
                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
XLSBFilePath - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSBSheet_AsXML

public bool esd_ReadXLSBSheet_AsXML(System.String XMLFilePath,
                                       System.String XLSBFilePath,
                                       System.String sheetName,
                                       System.String sRangeReference)
                                
Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
XMLFilePath - the path to the XML document.
XLSBFilePath - the path to the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSBSheet_AsXML

public bool esd_ReadXLSBSheet_AsXML(System.IO.Stream fXML,
                                       System.IO.Stream fXLSB,
                                       System.String sheetName,
                                       int startRow,
                                       int startColumn,
                                       int endRow,
                                       int endColumn)
                                
Reads the cell values from the specified range of the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
fXML - the stream that points to the XML document.
fXLSB - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
startRow - first row index of the cells that will be read.
startColumn - first column index of the cells that will be read.
endRow - last row index of the cells that will be read.
endColumn - last column index of the cells that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSBSheet_AsXML

public bool esd_ReadXLSBSheet_AsXML(System.IO.Stream fXML,
                                       System.IO.Stream fXLSB,
                                       System.String sheetName)
                                
Reads the cell values from the specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
fXML - the stream that points to the XML document.
fXLSB - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_ReadXLSBSheet_AsXML

public bool esd_ReadXLSBSheet_AsXML(System.IO.Stream fXML,
                                       System.IO.Stream fXLSB,
                                       System.String sheetName,
                                       System.String sRangeReference)
                                
Reads the cell values from the specified range of specified worksheet of the Microsoft Excel document (Office 2007 file format) and writes them into an XML document
Available for: Professional, Reader

Parameters:
fXML - the stream that points to the XML document.
fXLSB - the stream that points to the Excel document.
sheetName - the name of the worksheet that will be read.
sRangeReference - the range of cells from the sheetName Excel worksheet that will be read.
Returns:
true if the read operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadTXTFile

public bool esd_LoadTXTFile(System.String sPath,
                               System.String sRowDelimiter,
                               System.String sColumnDelimiter)
                        
Loads a specified document
Available for: Professional, Reader

Parameters:
sPath - the path to the TXT document.
sRowDelimiter - the row delimiter.
sColumnDelimiter - the column delimiter.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadTXTFile

public bool esd_LoadTXTFile(System.IO.Stream f,
                               System.String sRowDelimiter,
                               System.String sColumnDelimiter)
                        
Generates the document at the specified stream
Available for: Professional, Reader

Parameters:
f - the stream that points to the TXT document.
sRowDelimiter - the row delimiter.
sColumnDelimiter - the column delimiter.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadCSVFile

public bool esd_LoadCSVFile(System.String sPath)
                        
Loads a specified CSV document
Available for: Professional, Reader

Parameters:
sPath - the path to the CSV document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadCSVFile

public bool esd_LoadCSVFile(System.IO.Stream f)
                        
Generates the document at the specified stream
Available for: Professional, Reader

Parameters:
f - the stream that points to the CSV document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadHTMLFile

public bool esd_LoadHTMLFile(System.String sPath)
                         
Loads the specified HTML file
Available for: Professional, Reader

Parameters:
sPath - the path to the HTML document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadHTMLFile

public bool esd_LoadHTMLFile(System.IO.Stream f)
                         
Loads the specified HTML file
Available for: Professional, Reader

Parameters:
f - the stream that points to the HTML document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadXMLSpreadsheetFile

public bool esd_LoadXMLSpreadsheetFile(System.String sPath)
                                   
Loads a specified XML Spreadsheet document
Available for: Professional, Reader

Parameters:
sPath - the path to the Excel XML Spreadsheet document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_LoadXMLSpreadsheetFile

public bool esd_LoadXMLSpreadsheetFile(System.IO.Stream f)
                                   
Loads a specified XML Spreadsheet document
Available for: Professional, Reader

Parameters:
f - the stream that points the Excel XML Spreadsheet document.
Returns:
true if the load operation is successful, false otherwise.
Throws:
System.Exception

esd_WriteCSVFile

public void esd_WriteCSVFile(System.String sPath,
                             System.String sSheetName)
                      
Generates the CSV document at the specified path
Available for: Professional, Writer

Parameters:
sPath - the path to the CSV document.
sSheetName - the name of the sheet whose content will be saved to the CSV document.
Throws:
System.Exception

esd_WriteCSVFile

public void esd_WriteCSVFile(System.IO.Stream f,
                             System.String sSheetName)
                      
Generates the CSV at the specified stream
Available for: Professional, Writer

Parameters:
f - the stream that points the CSV document that will be created.
sSheetName - the name of the sheet whose content will be saved to the CSV document.
Throws:
System.Exception

esd_WriteTXTFile

public void esd_WriteTXTFile(System.String sPath,
                             System.String sSheetName,
                             System.String sRowDelimiter,
                             System.String sColumnDelimiter)
                      
Generates the TXT document at the specified path
Available for: Professional, Writer

Parameters:
sPath - the path to the TXT document.
sSheetName - the name of the sheet whose content will be saved to the TXT document.
sRowDelimiter - the row delimiter.
sColumnDelimiter - the column delimiter.
Throws:
System.Exception

esd_WriteHTMLFile

public void esd_WriteHTMLFile(System.String sPath,
                              System.String sSheetName)
                       
Generates the HTML document at the specified path
Available for: Professional, Writer

Parameters:
sPath - the path to the HTML document.
sSheetName - the name of the sheet whose content will be saved to the HTML document.
Throws:
System.Exception

esd_WriteHTMLFile

public void esd_WriteHTMLFile(System.IO.Stream f,
                              System.String sSheetName)
                       
Generates the HTML at the specified stream
Available for: Professional, Writer

Parameters:
f - the stream that points the HTML document that will be created.
sSheetName - the name of the sheet whose content will be saved to the HTML document.
Throws:
System.Exception

esd_WriteTXTFile

public void esd_WriteTXTFile(System.IO.Stream f,
                             System.String sSheetName,
                             System.String sRowDelimiter,
                             System.String sColumnDelimiter)
                      
Generates the document at the specified stream
Available for: Professional, Writer

Parameters:
f - the stream that points the document that will be created.
sSheetName - the name of the sheet whose content will be saved to the document.
sRowDelimiter - the row delimiter.
sColumnDelimiter - the column delimiter.
Throws:
System.Exception

esd_WriteXMLFile

public void esd_WriteXMLFile(System.String sPath)
                      
Generates the XML document at the specified path
Available for: Professional, Writer

Parameters:
sPath - the path to the XML document.
Throws:
System.Exception

esd_WriteXMLFile

public void esd_WriteXMLFile(System.IO.Stream f)
                      
Generates the XML document at the specified stream
Available for: Professional, Writer

Parameters:
f - the stream that points the XML document that will be created.
Throws:
System.Exception

esd_WriteExcelFile

public void esd_WriteExcelFile(System.String sPath)
                        
Deprecated. As of ActiveXLS version 6.1, replaced by esd_WriteXLSFile(String).

Generates the Microsoft Excel document (Office 97-2003) at the specified path
Available for: Professional, Writer

Parameters:
sPath - the path to the Excel document.
Throws:
System.Exception

esd_WriteXLSFile

public void esd_WriteXLSFile(System.String sPath)
                      
Generates the Microsoft Excel document (Office 97-2003) at the specified path
Available for: Professional, Writer

Parameters:
sPath - the path to the Excel document.
Throws:
System.Exception

esd_WriteExcelFile

public void esd_WriteExcelFile(System.IO.Stream f)
                        
Deprecated. As of ActiveXLS version 6.1, replaced by esd_WriteXLSFile(OutputStream).

Generates the Microsoft Excel document (Office 97-2003) at the specified stream
Available for: Professional, Writer

Parameters:
f - the stream that points the Excel document that will be created.
Throws:
System.Exception

esd_WriteXLSFile

public void esd_WriteXLSFile(System.IO.Stream f)
                      
Generates the Microsoft Excel document (Office 97-2003) at the specified stream
Available for: Professional, Writer

Parameters:
f - the stream that points the Excel document that will be created.
Throws:
System.Exception

esd_WriteXLSFile_FromDataSet

public void esd_WriteXLSFile_FromDataSet(System.IO.Stream f,
                                           System.Data.DataSet ds,
                                           ExcelAutoFormat xlsAutoFormat,
                                           System.String sSheetName)
                                    
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points to the Excel document that will be created.
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSFile_FromDataSet

public void esd_WriteXLSFile_FromDataSet(System.IO.Stream f,
                                           System.Data.DataSet ds,
                                           System.String startCellReference,
                                           ExcelAutoFormat xlsAutoFormat,
                                           System.String sSheetName)
                                    
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points to the Excel document that will be created.
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startCellReference - the cell where the DataSet values will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSFile_FromDataSet

public void esd_WriteXLSFile_FromDataSet(System.IO.Stream f,
                                           System.Data.DataSet ds,
                                           int startRow,
                                           int startCol,
                                           ExcelAutoFormat xlsAutoFormat,
                                           System.String sSheetName)
                                    
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points to the Excel document that will be created.
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSFile_FromDataSet

public void esd_WriteXLSFile_FromDataSet(System.String sPath,
                                           System.Data.DataSet ds,
                                           ExcelAutoFormat xlsAutoFormat,
                                           System.String sSheetName)
                                    
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSFile_FromDataSet

public void esd_WriteXLSFile_FromDataSet(System.String sPath,
                                           System.Data.DataSet ds,
                                           System.String startCellReference,
                                           ExcelAutoFormat xlsAutoFormat,
                                           System.String sSheetName)
                                    
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startCellReference - the cell where the DataSet values will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSFile_FromDataSet

public void esd_WriteXLSFile_FromDataSet(System.String sPath,
                                           System.Data.DataSet ds,
                                           int startRow,
                                           int startCol,
                                           ExcelAutoFormat xlsAutoFormat,
                                           System.String sSheetName)
                                    
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSFile_FromList

public void esd_WriteXLSFile_FromList(System.IO.Stream f,
                                      List list,
                                      ExcelAutoFormat xlsAutoFormat,
                                      System.String sSheetName)
                               
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points to the Excel document that will be created.
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSFile_FromList

public void esd_WriteXLSFile_FromList(System.IO.Stream f,
                                      List list,
                                      System.String startCellReference,
                                      ExcelAutoFormat xlsAutoFormat,
                                      System.String sSheetName)
                               
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points to the Excel document that will be created.
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startCellReference - the cell where the DataSet values will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSFile_FromList

public void esd_WriteXLSFile_FromList(System.IO.Stream f,
                                      List list,
                                      int startRow,
                                      int startCol,
                                      ExcelAutoFormat xlsAutoFormat,
                                      System.String sSheetName)
                               
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points to the Excel document that will be created.
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSFile_FromList

public void esd_WriteXLSFile_FromList(System.String sPath,
                                      List list,
                                      ExcelAutoFormat xlsAutoFormat,
                                      System.String sSheetName)
                               
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSFile_FromList

public void esd_WriteXLSFile_FromList(System.String sPath,
                                      List list,
                                      System.String startCellReference,
                                      ExcelAutoFormat xlsAutoFormat,
                                      System.String sSheetName)
                               
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startCellReference - the cell where the DataSet values will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSFile_FromList

public void esd_WriteXLSFile_FromList(System.String sPath,
                                      List list,
                                      int startRow,
                                      int startCol,
                                      ExcelAutoFormat xlsAutoFormat,
                                      System.String sSheetName)
                               
Generates a Microsoft Excel document (Office 97-2003) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile

public void esd_WriteXLSXFile(System.String sPath)
                       
Generates the Microsoft Excel Office2007 document at the specified path
Available for: Professional, Writer

Parameters:
sPath - the path to the Excel document.
Throws:
System.Exception

esd_WriteXLSXFile

public void esd_WriteXLSXFile(System.IO.Stream f)
                       
Generates the Microsoft Excel document (Office 2007 file format) at the specified stream
Available for: Professional, Writer

Parameters:
f - the stream that points the Excel document that will be created.
Throws:
System.Exception

esd_WriteXLSXFile_FromDataSet

public void esd_WriteXLSXFile_FromDataSet(System.IO.Stream f,
                                            System.Data.DataSet ds,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile_FromDataSet

public void esd_WriteXLSXFile_FromDataSet(System.IO.Stream f,
                                            System.Data.DataSet ds,
                                            System.String startCellReference,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startCellReference - the cell where the DataSet values will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile_FromDataSet

public void esd_WriteXLSXFile_FromDataSet(System.IO.Stream f,
                                            System.Data.DataSet ds,
                                            int startRow,
                                            int startCol,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile_FromDataSet

public void esd_WriteXLSXFile_FromDataSet(System.String sPath,
                                            System.Data.DataSet ds,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile_FromDataSet

public void esd_WriteXLSXFile_FromDataSet(System.String sPath,
                                            System.Data.DataSet ds,
                                            System.String startCellReference,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startCellReference - the cell where the DataSet values will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile_FromDataSet

public void esd_WriteXLSXFile_FromDataSet(System.String sPath,
                                            System.Data.DataSet ds,
                                            int startRow,
                                            int startCol,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile_FromList

public void esd_WriteXLSXFile_FromList(System.IO.Stream f,
                                       List list,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile_FromList

public void esd_WriteXLSXFile_FromList(System.IO.Stream f,
                                       List list,
                                       System.String startCellReference,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startCellReference - the cell where the DataSet values will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile_FromList

public void esd_WriteXLSXFile_FromList(System.IO.Stream f,
                                       List list,
                                       int startRow,
                                       int startCol,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile_FromList

public void esd_WriteXLSXFile_FromList(System.String sPath,
                                       List list,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile_FromList

public void esd_WriteXLSXFile_FromList(System.String sPath,
                                       List list,
                                       System.String startCellReference,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startCellReference - the cell from where the DataSet values will be inserted
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSXFile_FromList

public void esd_WriteXLSXFile_FromList(System.String sPath,
                                       List list,
                                       int startRow,
                                       int startCol,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile

public void esd_WriteXLSBFile(System.String sPath)
                       
Generates the Microsoft Excel Office2007 binary document at the specified path
Available for: Professional, Writer

Parameters:
sPath - the path to the Excel document.
Throws:
System.Exception

esd_WriteXLSBFile

public void esd_WriteXLSBFile(System.IO.Stream f)
                       
Generates the Microsoft Excel document (Office 2007 binary file format) at the specified stream
Available for: Professional, Writer

Parameters:
f - the stream that points the Excel document that will be created.
Throws:
System.Exception

esd_WriteXLSBFile_FromDataSet

public void esd_WriteXLSBFile_FromDataSet(System.IO.Stream f,
                                            System.Data.DataSet ds,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile_FromDataSet

public void esd_WriteXLSBFile_FromDataSet(System.IO.Stream f,
                                            System.Data.DataSet ds,
                                            System.String startCellReference,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startCellReference - the cell where the DataSet values will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile_FromDataSet

public void esd_WriteXLSBFile_FromDataSet(System.IO.Stream f,
                                            System.Data.DataSet ds,
                                            int startRow,
                                            int startCol,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile_FromDataSet

public void esd_WriteXLSBFile_FromDataSet(System.String sPath,
                                            System.Data.DataSet ds,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile_FromDataSet

public void esd_WriteXLSBFile_FromDataSet(System.String sPath,
                                            System.Data.DataSet ds,
                                            System.String startCellReference,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startCellReference - the cell where the DataSet values will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile_FromDataSet

public void esd_WriteXLSBFile_FromDataSet(System.String sPath,
                                            System.Data.DataSet ds,
                                            int startRow,
                                            int startCol,
                                            ExcelAutoFormat xlsAutoFormat,
                                            System.String sSheetName)
                                     
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the dataset data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
ds - the DataSet to be inserted; only the data from the first table of the DataSet will be inserted
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile_FromList

public void esd_WriteXLSBFile_FromList(System.IO.Stream f,
                                       List list,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile_FromList

public void esd_WriteXLSBFile_FromList(System.IO.Stream f,
                                       List list,
                                       System.String startCellReference,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startCellReference - the cell where the DataSet values will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile_FromList

public void esd_WriteXLSBFile_FromList(System.IO.Stream f,
                                       List list,
                                       int startRow,
                                       int startCol,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
f - the stream that points the Excel document that will be created.
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile_FromList

public void esd_WriteXLSBFile_FromList(System.String sPath,
                                       List list,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile_FromList

public void esd_WriteXLSBFile_FromList(System.String sPath,
                                       List list,
                                       System.String startCellReference,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startCellReference - the cell where the DataSet values will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_WriteXLSBFile_FromList

public void esd_WriteXLSBFile_FromList(System.String sPath,
                                       List list,
                                       int startRow,
                                       int startCol,
                                       ExcelAutoFormat xlsAutoFormat,
                                       System.String sSheetName)
                                
Generates a Microsoft Excel document (Office 2007 file format) having one worksheet filled with the list data
Available for: Professional, Writer, Express Writer

Parameters:
sPath - the path to the Excel document
list - a list of rows, each row is an ActiveXLS.Util.List object and each row must contain the values.
startRow - the index of the row where the dataset data will be inserted from
startCol - the index of the column where the dataset data will be inserted from
xlsAutoFormat - the autoformat to be applied;
sSheetName - the name of the sheet;
Throws:
System.Exception

esd_addWorksheet

public void esd_addWorksheet(ExcelWorksheet xlsWorksheet)
Adds a worksheet to the sheet list.

Parameters:
xlsWorksheet - the worksheet that will be added to the sheet list.

esd_addWorksheet

public void esd_addWorksheet(System.String sheetName)
Adds a worksheet having the specified worksheet name to the sheet list.

Parameters:
sheetName - the worksheet name.

esd_addWorksheet

public void esd_addWorksheet(System.String sheetName,
                             bool isSelected)
Adds a worksheet having the worksheet name and selected option specified.

Parameters:
sheetName - the worksheet name.
isSelected - true if the worksheet is selected.

esd_insertWorksheet

public void esd_insertWorksheet(int index,
                                ExcelWorksheet xlsWorksheet)
Inserts a worksheet to the sheet list on the specified position.

Parameters:
index - the index where the worksheet will be inserted to the sheet list.
xlsWorksheet - the worksheet that will be inserted to the sheet list.

esd_insertWorksheet

public void esd_insertWorksheet(int index,
                                System.String sheetName)
Inserts a worksheet having the specified worksheet name to the sheet list on the specified position.

Parameters:
index - the index where the worksheet will be inserted to the sheet list.
sheetName - the worksheet name.

esd_insertWorksheet

public void esd_insertWorksheet(int index,
                                System.String sheetName,
                                bool isSelected)
Inserts a worksheet having the worksheet name and selected option specified.

Parameters:
index - the index where the worksheet will be inserted to the sheet list.
sheetName - the worksheet name.
isSelected - true if the worksheet is selected.

esd_removeSheet

public void esd_removeSheet(int index)
Removes a sheet from the sheet list on the specified position.

Parameters:
index - the index of the sheet that will be removed from the sheet list.

esd_removeSheet

public void esd_removeSheet(System.String sheetName)
Removes the sheet that has the specified name from the sheet list.

Parameters:
sheetName - the sheet name.

esd_getSheetAt

public ExcelSheet esd_getSheetAt(int index)
Returns the sheet on the specified position.

Parameters:
index - the index of the sheet in the sheet list.
Returns:
the sheet from the specified position

esd_getSheet

public ExcelSheet esd_getSheet(System.String sheetName)
Returns the sheet that has the specified name.

Parameters:
sheetName - the sheet name.
Returns:
the sheet that has the specified name

esd_getSheetPosition

public int esd_getSheetPosition(System.String sheetName)
Returns the position in the sheet list of the sheet that has the specified name.

Parameters:
sheetName - the sheet name.
Returns:
the position in the sheet list of the specified sheet

esd_addChart

public void esd_addChart(ExcelChartSheet xlsChartSheet)
Adds a chart to the sheet list.

Parameters:
xlsChartSheet - the chart that will be added to the sheet list.

esd_addChart

public void esd_addChart(System.String sheetName)
Adds a chart sheet having the specified sheet name to the sheet list.

Parameters:
sheetName - the chart sheet name.

esd_addChart

public void esd_addChart(System.String sheetName,
                         System.String formulaDataRange,
                         int seriesType)
Adds a chart sheet to the sheet list. The chart has the sheet name, the data range and the type of the series specified.

Parameters:
sheetName - the chart sheet name.
formulaDataRange - the range containing the data for the chart.
seriesType - the type of the chart series.

esd_addChart

public void esd_addChart(System.String sheetName,
                         bool isSelected)
Adds a chart sheet having the sheet name and selected option specified.

Parameters:
sheetName - the chart sheet name.
isSelected - true if the chart sheet is selected.

esd_addChart

public void esd_addChart(System.String sheetName,
                         bool isSelected,
                         System.String formulaDataRange,
                         int seriesType)
Adds a chart sheet to the sheet list. The chart has the sheet name, the selected option, the data range and the type of the series specified.

Parameters:
sheetName - the chart sheet name.
isSelected - true if the chart sheet is selected.
formulaDataRange - the range containing the data for the chart.
seriesType - the type of the chart series.

esd_insertChart

public void esd_insertChart(int index,
                            ExcelChartSheet xlsChartSheet)
Inserts a chart sheet in the sheet list on the specified position.

Parameters:
index - the index where the chart will be inserted in the sheet list.
xlsChartSheet - the chart sheet that will be inserted in the sheet list.

esd_insertChart

public void esd_insertChart(int index,
                            System.String sheetName)
Inserts a chart sheet having the specified sheet name in the sheet list on the specified position.

Parameters:
index - the index where the chart sheet will be inserted in the sheet list.
sheetName - the chart sheet name.

esd_insertChart

public void esd_insertChart(int index,
                            System.String sheetName,
                            System.String formulaDataRange,
                            int seriesType)
Inserts a chart sheet in the sheet list on the specified position. The chart has the sheet name, the data range and the type of the series specified.

Parameters:
index - the index where the chart sheet will be inserted in the sheet list.
sheetName - the chart sheet name.
formulaDataRange - the range containing the data for the chart.
seriesType - the type of the chart series.

esd_insertChart

public void esd_insertChart(int index,
                            System.String sheetName,
                            bool isSelected)
Inserts a chart sheet having the sheet name and selected option specified.

Parameters:
index - the index where the chart sheet will be inserted in the sheet list.
sheetName - the chart sheet name.
isSelected - true if the chart sheet is selected.

esd_insertChart

public void esd_insertChart(int index,
                            System.String sheetName,
                            bool isSelected,
                            System.String formulaDataRange,
                            int seriesType)
Inserts a chart sheet in the sheet list on the specified position. The chart has the sheet name, the selected option, the data range and the type of the series specified.

Parameters:
index - the index where the chart sheet will be inserted in the sheet list.
sheetName - the chart sheet name.
isSelected - true if the chart sheet is selected.
formulaDataRange - the range containing the data for the chart.
seriesType - the type of the chart series.

esd_removeVBMacros

public void esd_removeVBMacros()
Removes the VB project and macros if any.


getCurrentSheet

public int getCurrentSheet()
Returns the current sheet displayed when the document is loaded in Microsoft Excel.

Returns:
the index of the current sheet.

setCurrentSheet

public void setCurrentSheet(int tabIndex)
Sets the current sheet displayed when the document is loaded in Microsoft Excel.

Parameters:
tabIndex - the index of the sheet.

esd_getOptions

public ExcelOptions esd_getOptions()
Returns the options of an Excel document, available in the main menu Tools/Options window.

Returns:
the options of an Excel document.
See Also:
esd_setOptions(ActiveXLS.ExcelOptions)

esd_setOptions

public void esd_setOptions(ExcelOptions xlsOptions)
Sets the options of an Excel document, available in the main menu Tools/Options window.

Parameters:
xlsOptions - the options of an Excel document.
See Also:
esd_getOptions()

getSummaryInformation

public SummaryInformation getSummaryInformation()
Returns the summary information of an Excel document.

Returns:
the summary information of an Excel document.
See Also:
setSummaryInformation(ActiveXLS.FileProperties.SummaryInformation)

setSummaryInformation

public void setSummaryInformation(SummaryInformation summaryInformation)
Sets the summary information of an Excel document.

Parameters:
summaryInformation - the summary information of an Excel document.
See Also:
getSummaryInformation()

getDocumentSummaryInformation

public DocumentSummaryInformation getDocumentSummaryInformation()
Returns the document summary information of an Excel document.

Returns:
the document summary information of an Excel document.
See Also:
setDocumentSummaryInformation(ActiveXLS.FileProperties.DocumentSummaryInformation)

setDocumentSummaryInformation

public void setDocumentSummaryInformation(DocumentSummaryInformation documentSummaryInformation)
Sets the document summary information of an Excel document.

Parameters:
documentSummaryInformation - the document summary information of an Excel document.
See Also:
getSummaryInformation()

getExternalLinks

public ExternalLinks getExternalLinks()
Returns the list of the external links from the formulas inside the Excel document.

Returns:
the list of the external links for an Excel document

Dispose

public void Dispose()
Disposes any resources that it has allocated.


Clone

public ExcelDocument Clone()
Creates and returns a copy of this object.

Returns:
a clone of this instance.

Copyright 2009 On Time Computing Solutions