[]
        
(Showing Draft Content)

IRangeProvider

Interface IRangeProvider


public interface IRangeProvider
Provides access to IRange objects in a worksheet.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(int row, int column)
    Gets the IRange object that represents the cell at the specified row and column.
    get(int row, int column, int rowCount, int columnCount)
    Gets the IRange object that represents the range at the specified row and column with the specified size.
    get(String reference)
    Gets the IRange object that is specified by its A1-style reference.
  • Method Details

    • get

      IRange get(String reference)
      Gets the IRange object that is specified by its A1-style reference.
      Parameters:
      reference - The A1-style reference of the range.
      Returns:
      The specified range.
    • get

      IRange get(int row, int column)
      Gets the IRange object that represents the cell at the specified row and column.
      Parameters:
      row - The zero-based row index of the cell.
      column - The zero-based column index of the cell.
      Returns:
      The specified cell.
    • get

      IRange get(int row, int column, int rowCount, int columnCount)
      Gets the IRange object that represents the range at the specified row and column with the specified size.
      Parameters:
      row - The zero-based row index of the first row in the range.
      column - The zero-based column index of the first column in the range.
      rowCount - The number of rows in the range.
      columnCount - The number of columns in the range.
      Returns:
      The specified range.