rows method

This method returns a Range object that represents one row or all the rows in the specified range.

Defined in

Range

Syntax

public Range rows()
public Range rows(int index) throws SymphonyException

Parameters

int index

Specifies the row index in the sheet, starting at 1. If the row index is out of bounds, this method throws an exception.

Return Value

range

  • rows() returns a Range object that represents the whole range.
  • rows( int rowIndex) returns a Range object that represents a row of the range.

See examples

Example: rows method