Uses of Class
EasyXLS.ExcelCell

Namespaces that use ExcelCell
Namespace
Description
 
  • Uses of ExcelCell in EasyXLS

    Methods in EasyXLS that return ExcelCell
    Modifier and Type
    Method
    Description
    ExcelCell.Clone()
    Creates and returns a copy of this object.
    ExcelRow.easy_getCell​(int index)
    If a cell does not exist at the specified index, it creates a cell, and returns the cell from the specified index.
    ExcelTable.easy_getCell​(int row, int column)
    If a cell does not exist at the specified position, it creates one, and returns the cell.
    ExcelTable.easy_getCell​(System.String cellReference)
    Returns the cell at the specified reference.
    This method is overridden as easy_getCell_2 in COM+ version of EasyXLS.
    ExcelRow.easy_getCellAt​(int index)
    Returns the cell from the specified index.
    ExcelTable.easy_getCellAt​(int row, int column)
    Returns the cell at the specified row and column.
    Methods in EasyXLS with parameters of type ExcelCell
    Modifier and Type
    Method
    Description
    void
    ExcelRow.easy_addCell​(ExcelCell cell)
    Adds the specified cell to row.
    void
    ExcelRow.easy_insertCellAt​(ExcelCell cell, int index)
    Inserts the specified cell at the specified index.
    void
    ExcelRow.easy_setCellAt​(ExcelCell cell, int index)
    Sets the specified cell at the specified index.
    void
    ExcelTable.easy_setCellAt​(ExcelCell cell, int row, int column)
    Sets the cell at the specified position.