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

Latest commit

 

History

History
24 lines (18 loc) · 696 Bytes

excel.hideCol.md

File metadata and controls

24 lines (18 loc) · 696 Bytes

Excel.hideCol

The hideCol function is established to hide cols in a sheet.

Sample

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

API

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