rows method

This method returns a Range object representing all rows or returns one row by index.

Defined in

Sheet

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 sheet.
  • rows( int index ) returns a Range object that represents a row.

See examples

Example: rows method