TableToRangeOptions

TableToRangeOptions class

Represents the options when converting table to range.

class TableToRangeOptions;

Constructors

ConstructorDescription
constructor()Default Constructor.

Properties

PropertyTypeDescription
lastRownumberGets and sets the last row index of the table.

Methods

MethodDescription
getLastRow()@deprecated. Please use the ’lastRow’ property instead. Gets and sets the last row index of the table.
setLastRow(number)@deprecated. Please use the ’lastRow’ property instead. Gets and sets the last row index of the table.
isNull()Checks whether the implementation object is null.

constructor()

Default Constructor.

constructor();

lastRow

Gets and sets the last row index of the table.

lastRow : number;

getLastRow()

@deprecated. Please use the ’lastRow’ property instead. Gets and sets the last row index of the table.

getLastRow() : number;

setLastRow(number)

@deprecated. Please use the ’lastRow’ property instead. Gets and sets the last row index of the table.

setLastRow(value: number) : void;

Parameters:

ParameterTypeDescription
valuenumberThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;