SpreadJS Documentation
hyperline Method
The hyperlink theme color string.
Gets or sets the hyperlink theme color.
Syntax
var instance = new GcSpread.Sheets.ThemeColor(name,
                                             text1,
                                             text2,
                                             background1,
                                             background2,
                                             accent1,
                                             accent2,
                                             accent3,
                                             accent4,
                                             accent5,
                                             accent6,
                                             link,
                                             followedLink);
var returnValue; // Type: Object
returnValue = instance.hyperline(value);
function hyperline( 
   value : string
) : Object;

Parameters

value
The hyperlink theme color string.

Return Value

The hyperlink theme color.
Example
This example sets the hyperline color.
var ntheme = new GcSpread.Sheets.ThemeColor("customThemeColor");
ntheme.accent1("lightgreen");
ntheme.followedHyperline("orange");
ntheme.hyperline("red");
activeSheet.currentTheme(new GcSpread.Sheets.SpreadTheme("customTheme", ntheme));
activeSheet.getCell(0, 0).backColor("accent 1");
activeSheet.getCell(1, 0).backColor("followedHyperlink");
activeSheet.getCell(2, 0).backColor("hyperlink");
See Also

Reference

ThemeColor type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.