SpreadJS Documentation
watermark Field
Indicates the watermark content.
Syntax
var instance = new GcSpread.Sheets.Style(backColor,
                                        foreColor,
                                        hAlign,
                                        vAlign,
                                        font,
                                        themeFont,
                                        formatter,
                                        borderLeft,
                                        borderTop,
                                        borderRight,
                                        borderBottom,
                                        locked,
                                        textIndent,
                                        wordWrap,
                                        shrinkToFit,
                                        backgroundImage,
                                        cellType,
                                        backgroundImageLayout,
                                        tabStop,
                                        textDecoration,
                                        imeMode,
                                        name,
                                        parentName,
                                        watermark);
var value; // Type: string
value = instance.watermark;
var watermark : string;
Example
The following examples add watermarks to cells, columns, and rows.
var type = new GcSpread.Sheets.Style();
type.watermark = "User name";
sheet.setStyle(0, 1, type);
var type = new GcSpread.Sheets.Style();
type.watermark = "Password";
sheet.setStyle(1, 1, type);
var type = new GcSpread.Sheets.Style();
type.watermark = "The watermark.";
activeSheet.setStyle(-1, 1, type);
activeSheet.setStyle(1, -1, type);
activeSheet.setStyle(2, 2, type);
See Also

Reference

Style class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.