SpreadJS Documentation
HyperLinkCellType Constructor
Represents the hyperlink cell.
Syntax
var instance = new GcSpread.Sheets.HyperLinkCellType();
function HyperLinkCellType() : HyperLinkCellType;
Example
This example creates a hyperlink cell.
var cellType = new GcSpread.Sheets.HyperLinkCellType();
cellType.linkColor("blue");
cellType.visitedLinkColor("#FF2235");
cellType.text("GrapeCity");
cellType.linkToolTip("Company Web Site");
activeSheet.getCell(1, 1).cellType(cellType).value("http://spread.grapecity.com/");
activeSheet.getRow(1).height(30);
var cellType = new GcSpread.Sheets.HyperLinkCellType();
cellType.linkColor("blue");
cellType.visitedLinkColor("#FF2235");
cellType.text("GrapeCity");
cellType.linkToolTip("Company Web Site");
activeSheet.getCell(0, 2).cellType(cellType).value("formula.html");
See Also

Reference

HyperLinkCellType class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.