GC.Spread.Sheets.CellTypes Namespace : HyperLinkTargetType Enumeration |
Member | Description |
---|---|
blank | Opens the hyperlinked document in a new window or tab. |
parent | Opens the hyperlinked document in the parent frame. |
self | Opens the hyperlinked document in the same frame where the user clicked. |
top | Opens the hyperlinked document in the full body of the window. |
var cellType = new GC.Spread.Sheets.CellTypes.HyperLink(); cellType.linkColor("blue"); cellType.visitedLinkColor("#FFFF00"); cellType.text("GrapeCity"); cellType.linkToolTip("Company Web Site"); cellType.target(GC.Spread.Sheets.CellTypes.HyperLinkTargetType.self); activeSheet.getCell(0, 2).cellType(cellType).value("http://spread.grapecity.com/");
Object
GC.Spread.Sheets.CellTypes.HyperLinkTargetType