GcSpread.Sheets 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 GcSpread.Sheets.HyperLinkCellType(); cellType.linkColor("blue"); cellType.visitedLinkColor("#FFFF00"); cellType.text("ComponentOne"); cellType.linkToolTip("Company Web Site"); cellType.target(GcSpread.Sheets.HyperLinkTargetType.Self); activeSheet.getCell(0, 2).cellType(cellType).value("http://www.componentone.com/");
Object
GcSpread.Sheets.HyperLinkTargetType