excel_sheet_get_sizeΒΆ

excel_sheet_get_size returns the number of rows and columns of an Excel sheet.

rvSize = excel_sheet_get_size(oSheet)

Return Value

rvSize is real vector with 2 elements:

Value

Meaning

rvSize[1]

Number of rows.

rvSize[2]

Number of columns.

Parameters

oSheet

oSheet is an object created by excel_sheet_open.

Example

See excel_open.

History

Version

Description

5.2.0

New

id-401188