columns method

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

Defined in

Range

Syntax

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

Parameters

int index

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

Return Value

range

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

See examples

Example: columns method