Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
24 lines (18 loc) · 698 Bytes

excel.showCol.md

File metadata and controls

24 lines (18 loc) · 698 Bytes

Excel.showCol

The showCol function is established to show cols in a sheet.

Sample

	var excel = new Excel("test.xlsx");
	excel.showCol("mySheet",2,4);

API

CallingReturning
Excel . showCol ( sheetName , startCol , endCol)Excel
ParametersTypeDescription
sheetNameStringThe sheet name.
startColNumberThe start col of the range to be showed. Indexed from 0.
endColNumberThe end col of the range to be showed. Indexed from 0.