SpreadJS Documentation
GC.Spread.Sheets Namespace / Style class / name Field
In This Topic
    name Field
    In This Topic
    Indicates the name.
    Syntax
    var instance = new GC.Spread.Sheets.Style(backColor,
                                             foreColor,
                                             hAlign,
                                             vAlign,
                                             font,
                                             themeFont,
                                             formatter,
                                             borderLeft,
                                             borderTop,
                                             borderRight,
                                             borderBottom,
                                             diagonalDown,
                                             diagonalUp,
                                             locked,
                                             textIndent,
                                             wordWrap,
                                             shrinkToFit,
                                             backgroundImage,
                                             cellType,
                                             backgroundImageLayout,
                                             tabStop,
                                             textDecoration,
                                             imeMode,
                                             name,
                                             parentName,
                                             watermark,
                                             cellPadding,
                                             labelOptions,
                                             labelOptions.alignment,
                                             labelOptions.visibility,
                                             labelOptions.font,
                                             labelOptions.foreColor,
                                             labelOptions.margin,
                                             isVerticalText,
                                             textOrientation);
    var value; // Type: string
    value = instance.name;
    var name : string;
    Example
    This example sets the style name.
    var namedStyle = new GC.Spread.Sheets.Style();
    namedStyle.name = "style1";
    namedStyle.backColor = "green";
    activeSheet.addNamedStyle(namedStyle);
    activeSheet.setStyleName(1, 1, "style1"); // cell(1,1)'s backColor is green.
     
    var namedStyle1 = new GC.Spread.Sheets.Style();
    namedStyle1.name = "style2";
    namedStyle1.parentName = "style1";
    namedStyle1.foreColor = "red";    // the namedStyle's foreColor is red.
    activeSheet.addNamedStyle(namedStyle1);
    activeSheet.setStyleName(2, 1, "style2");
    See Also

    Reference

    Style class