Spread.Sheets
clearRule メソッド
すべてのルールを削除します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.ConditionalFormatting.ConditionalFormats(worksheet);
var value; // Type: any
value = instance.clearRule();
Javascript (Specification) 
function clearRule() : any;
使用例
次のサンプルコードは、clearRuleメソッドを使用します。
activeSheet.setValue(0,0, 1,3);
activeSheet.setValue(1,0, 50,3);
activeSheet.setValue(2,0, 100,3);
activeSheet.conditionalFormats.add2ScaleRule(GC.Spread.Sheets.ConditionalFormatting.ScaleValueType.number, 10, "red", GC.Spread.Sheets.ConditionalFormatting.ScaleValueType.number, 100, "yellow", [new GC.Spread.Sheets.Range(0, 0, 10, 3)]);
// Remove comment in front of method to test
//activeSheet.conditionalFormats.clearRule();

関連トピック

参照

ConditionalFormats タイプ

 

 


© 2016-2017, GrapeCity inc. All rights reserved.