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

Latest commit

 

History

History
26 lines (20 loc) · 759 Bytes

excel.setLink.md

File metadata and controls

26 lines (20 loc) · 759 Bytes

Excel.setLink

The setLink function is established to set a link into a cell.

Sample

	var excel = new Excel("test.xlsx");
	excel.createSheet("newSheet")
	.createSheet("linkSheet")
	.setLink("newSheet","A1","#\'linkSheet'!A1");		// To set a link into a cell.

API

CallingReturning
Excel . setCell ( sheetName , position , linkUrl )Excel
ParametersTypeDescription
sheetNameStringThe sheet name.
positionStringThe cell position for add a link.
linkUrlStringThe Url for link to a sheet.