[]
        
(Showing Draft Content)

WorkSheet

Document Solutions Data Viewer - v7.2.0 / WorkSheet

Class: WorkSheet

Represents a worksheet.

Table of contents

Methods

Methods

getText

getText(row, col): string

Retrieves formatted text in the cell based on the desired row and column index.

Sample

var text = worksheet.getText(0, 0);

Parameters

Name Type Description
row number The row index.
col number The column index.

Returns

string

Returns the formatted text of the cell.


getValue

getValue(row, col): any

Retrieves unformatted data from the specified cell based on the desired row and column index.

Sample

var value = worksheet.getValue(0, 0);

Parameters

Name Type Description
row number The row index.
col number The column index.

Returns

any

Object Returns the value of the cell.


getSelections

getSelections(): undefined | Range[]

Retrieves the selections in the current sheet.

Sample

var selection = worksheet.getSelections();

Returns

undefined | Range[]

The type Range is stored in an Array.