[]
        
(Showing Draft Content)

IRangeProvider

Interface IRangeProvider


public interface IRangeProvider
Provides access to the IRange object of cells in the worksheet.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(int row, int column)
    Gets the IRange object with the specified row and column.
    get(int row, int column, int rowCount, int columnCount)
    Gets the IRange object with the specified row and column.
    get(String reference)
    Gets the IRange object with the specified reference.
  • Method Details

    • get

      IRange get(String reference)
      Gets the IRange object with the specified reference.
      Parameters:
      reference - The reference.
    • get

      IRange get(int row, int column)
      Gets the IRange object with the specified row and column.
      Parameters:
      row - The row.
      column - The column.
    • get

      IRange get(int row, int column, int rowCount, int columnCount)
      Gets the IRange object with the specified row and column.
      Parameters:
      row - The row.
      column - The column.
      rowCount - The row count.
      columnCount - The column count.