excel_sheet_createΒΆ

excel_sheet_create creates a new Excel sheet.

oSheet = excel_sheet_create(oExcel, ssSheetname, nRows, nColumns)

Return Value

oSheet is an object handle.

Parameters

oExcel

oExcel is an object created by excel_create.

ssSheetname

ssSheetname is the sheet name. The name length is limited to 31 characters. The following characters are invalid: / \ * ? [ ]. The name will be clipped after 31 characters and invalid characters will be replaced by an underscore.

nRows

nRows is the number of rows.

nColumns

nColumns is the number of columns.

History

Version Description
5.5.0 New
5.15.4 Sheet name is checked for invalid characters

id-1329126