SpreadJS製品ヘルプ
removeRule メソッド
GC.Spread.Sheets.ConditionalFormatting 名前空間 > ConditionalFormats タイプ : removeRule メソッド
ConditionalFormatsオブジェクトから削除するルールオブジェクト。
ConditionalFormatsオブジェクトからルールオブジェクトを削除します。
シンタックス
var instance = new GC.Spread.Sheets.ConditionalFormatting.ConditionalFormats(worksheet);
var value; // Type: any
value = instance.removeRule(rule);
function removeRule( 
   rule : ConditionRuleBase
) : any;

パラメータ

rule
ConditionalFormatsオブジェクトから削除するルールオブジェクト。
使用例
次のサンプルコードは、removeRuleメソッドを使用します。
var style = new GC.Spread.Sheets.Style();
style.backColor = "red";
var rule = new GC.Spread.Sheets.ConditionalFormatting.NormalConditionRule();
rule.ruleType(GC.Spread.Sheets.ConditionalFormatting.RuleType.cellValueRule);
rule.ranges([new GC.Spread.Sheets.Range(0,0,5,1)]);
rule.operator(GC.Spread.Sheets.ConditionalFormatting.ComparisonOperators.between);
rule.style(style);
rule.value1(2);
rule.value2(100);
activeSheet.conditionalFormats.addRule(rule);
activeSheet.setValue(0,0,1,3);
activeSheet.setValue(1,0,45,3);
activeSheet.conditionalFormats.removeRule(rule);
関連トピック

参照

ConditionalFormats タイプ