Excel.Interfaces.RangeViewData interface

An interface describing the data returned by calling rangeView.toJSON().

Properties

cellAddresses

Represents the cell addresses of the RangeView.

columnCount

The number of visible columns.

formulas

Represents the formula in A1-style notation. If a cell has no formula, its value is returned instead.

formulasLocal

Represents the formula in A1-style notation, in the user's language and number-formatting locale. For example, the English "=SUM(A1, 1.5)" formula would become "=SUMME(A1; 1,5)" in German. If a cell has no formula, its value is returned instead.

formulasR1C1

Represents the formula in R1C1-style notation. If a cell has no formula, its value is returned instead.

index

Returns a value that represents the index of the RangeView.

numberFormat

Represents Excel's number format code for the given cell.

rowCount

The number of visible rows.

rows

Represents a collection of range views associated with the range.

text

Text values of the specified range. The text value will not depend on the cell width. The # sign substitution that happens in Excel UI will not affect the text value returned by the API.

values

Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.

valueTypes

Represents the type of data of each cell.

Property Details

cellAddresses

Represents the cell addresses of the RangeView.

cellAddresses?: any[][];

Property Value

any[][]

Remarks

[ API set: ExcelApi 1.3 ]

columnCount

The number of visible columns.

columnCount?: number;

Property Value

number

Remarks

[ API set: ExcelApi 1.3 ]

formulas

Represents the formula in A1-style notation. If a cell has no formula, its value is returned instead.

formulas?: any[][];

Property Value

any[][]

Remarks

[ API set: ExcelApi 1.3 ]

formulasLocal

Represents the formula in A1-style notation, in the user's language and number-formatting locale. For example, the English "=SUM(A1, 1.5)" formula would become "=SUMME(A1; 1,5)" in German. If a cell has no formula, its value is returned instead.

formulasLocal?: any[][];

Property Value

any[][]

Remarks

[ API set: ExcelApi 1.3 ]

formulasR1C1

Represents the formula in R1C1-style notation. If a cell has no formula, its value is returned instead.

formulasR1C1?: any[][];

Property Value

any[][]

Remarks

[ API set: ExcelApi 1.3 ]

index

Returns a value that represents the index of the RangeView.

index?: number;

Property Value

number

Remarks

[ API set: ExcelApi 1.3 ]

numberFormat

Represents Excel's number format code for the given cell.

numberFormat?: any[][];

Property Value

any[][]

Remarks

[ API set: ExcelApi 1.3 ]

rowCount

The number of visible rows.

rowCount?: number;

Property Value

number

Remarks

[ API set: ExcelApi 1.3 ]

rows

Represents a collection of range views associated with the range.

rows?: Excel.Interfaces.RangeViewData[];

Property Value

Remarks

[ API set: ExcelApi 1.3 ]

text

Text values of the specified range. The text value will not depend on the cell width. The # sign substitution that happens in Excel UI will not affect the text value returned by the API.

text?: string[][];

Property Value

string[][]

Remarks

[ API set: ExcelApi 1.3 ]

values

Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.

values?: any[][];

Property Value

any[][]

Remarks

[ API set: ExcelApi 1.3 ]

valueTypes

Represents the type of data of each cell.

valueTypes?: Excel.RangeValueType[][];

Property Value

Remarks

[ API set: ExcelApi 1.3 ]