SpreadJS Documentation
getNamedStyle Method
The name for which to search.
Gets a style from the Spread named styles collection that has the same name as the specified name.
Syntax
var instance = new GcSpread.Sheets.Spread(host, options);
var value; // Type: Style
value = instance.getNamedStyle(name);
function getNamedStyle( 
   name : string
) : Style;

Parameters

name
The name for which to search.

Return Value

Returns the specified named style.
Example
This example gets a named style.
<input type="button" id="button1" value="button1"/>

var namedStyle = new GcSpread.Sheets.Style();
namedStyle.name = "style1";
namedStyle.backColor = "green";
spread.addNamedStyle(namedStyle);
activeSheet.setStyleName(1, 1, "style1"); // cell(1,1)'s backColor is  green.
activeSheet.setStyleName(2, 1, "style1");
 
var style = spread.getNamedStyle("style1");
style.foreColor = "red";    // the namedStyle's foreColor is red.
activeSheet.repaint(); // the foreColor of the cell(1,1) and cell(2,1) is red.
activeSheet.getCell(1,1).value("test");

$("#button1").click(function () {
spread.removeNamedStyle("style1");
    });
See Also

Reference

Spread type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.