[]
        
(Showing Draft Content)

GC.Spread.Sheets.CellTypes.HyperLinkTargetType

Enumeration: HyperLinkTargetType

Sheets.CellTypes.HyperLinkTargetType

Specifies the hyperlink's target type.

example

//This example creates a hyperlink cell.
var cellType = new GC.Spread.Sheets.CellTypes.HyperLink();
cellType.linkColor("blue");
cellType.visitedLinkColor("#FFFF00");
cellType.text("SpreadJS");
cellType.linkToolTip("Company Web Site");
cellType.target(GC.Spread.Sheets.CellTypes.HyperLinkTargetType.self);
activeSheet.getCell(0, 2).cellType(cellType).value("http://www.spreadjs.com/");

Table of contents

Enumeration members

Enumeration members

blank

blank = 0

Opens the hyperlinked document in a new window or tab.


parent

parent = 2

Opens the hyperlinked document in the parent frame.


self

self = 1

Opens the hyperlinked document in the same frame where the user clicked.


top

top = 3

Opens the hyperlinked document in the full body of the window.