SpreadJS Documentation
GC.Spread.Sheets Namespace / Style class / backgroundImageLayout Field
In This Topic
    backgroundImageLayout Field
    In This Topic
    Indicates the background image layout.
    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: ImageLayout
    value = instance.backgroundImageLayout;
    var backgroundImageLayout : ImageLayout;
    Example
    This example sets the backgroundImageLayout property.
    var style = new GC.Spread.Sheets.Style();
    style.backColor = "lightgreen";
    style.backgroundImage = "./css/images/quarter1.png";
    style.backgroundImageLayout  = GC.Spread.Sheets.ImageLayout.center;
    activeSheet.setStyle(1,1,style,GC.Spread.Sheets.SheetArea.viewport);
    See Also

    Reference

    Style class