SpreadJS Documentation
GC.Spread.Sheets Namespace / Style class / textOrientation Field
In This Topic
    textOrientation Field
    In This Topic
    Indicates the text rotation angle of cell.
    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: number
    value = instance.textOrientation;
    var textOrientation : number;
    Example
    //This example sets the textOrientation property.
    var style = new GC.Spread.Sheets.Style();
    style.textOrientation = 66;
    activeSheet.setStyle(1,1,style,GC.Spread.Sheets.SheetArea.viewport);
    activeSheet.getCell(1,1).text("TestTestTestTest");
    See Also

    Reference

    Style class