[]
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/");
• blank = 0
Opens the hyperlinked document in a new window or tab.
• parent = 2
Opens the hyperlinked document in the parent frame.
• self = 1
Opens the hyperlinked document in the same frame where the user clicked.
• top = 3
Opens the hyperlinked document in the full body of the window.