SpreadJS製品ヘルプ
applyProtection フィールド
GC.Spread.Sheets 名前空間 > Style クラス : applyProtection フィールド
namedStyleでのみ機能します。 保護の書式が適用されているかどうかを示すブール値。
シンタックス
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,
                                         applyFont,
                                         applyFill,
                                         applyAlignment,
                                         applyBorder,
                                         applyProtection,
                                         applyNumberFormat);
var value; // Type: boolean
value = instance.applyProtection;
var applyProtection : boolean;
使用例
//次のサンプルコードは、namedStyleのapplyProtectionプロパティを設定します。
var style = new GC.Spread.Sheets.Style();
style.name = 'test';
style.applyProtection = false;
spread.addNamedStyle(style);
関連トピック

参照

Style クラス