Spread.Sheets
stopIfTrue メソッド
より優先度の低いルールがこのルールの前に適用されるかどうか。
より優先度の低いルールがこのルールの前に適用されるかどうかを取得または設定します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.ConditionalFormatting.ConditionRuleBase(ruleType, style, ranges);
var returnValue; // Type: any
returnValue = instance.stopIfTrue(value);
Javascript (Specification) 
function stopIfTrue( 
   value : boolean
) : any;

パラメータ

value
より優先度の低いルールがこのルールの前に適用されるかどうか。

戻り値の型

値が設定されていない場合は、より優先度の低いルールがこのルールの前に適用されるかどうかを返します。値が設定されている場合は、条件ルールを返します。
使用例
次のサンプルコードは、複数のルールを適用します。
activeSheet.setArray(0,0,[1,2,3,4,5,6,7,8,9,10]);
var style = new GC.Spread.Sheets.Style();
style.backColor = "red";
style.foreColor = "black";
var cell = new GC.Spread.Sheets.ConditionalFormatting.NormalConditionRule();
cell.ruleType(GC.Spread.Sheets.ConditionalFormatting.RuleType.cellValueRule);
cell.operator(GC.Spread.Sheets.ConditionalFormatting.ComparisonOperators.greaterThan);
cell.value1(5);
cell.ranges([new GC.Spread.Sheets.Range(0, 0, 10, 1)]);
cell.style(style);
activeSheet.conditionalFormats.addRule(cell);

var style1 = new GC.Spread.Sheets.Style();
style1.foreColor = "red";
var top = new GC.Spread.Sheets.ConditionalFormatting.NormalConditionRule();
top.ruleType(GC.Spread.Sheets.ConditionalFormatting.RuleType.top10Rule);
top.type(GC.Spread.Sheets.ConditionalFormatting.Top10ConditionType.top);
top.rank(3);
top.style(style1);
top.ranges([new GC.Spread.Sheets.Range(0, 0, 10, 1)]);
top.stopIfTrue(true);
activeSheet.conditionalFormats.addRule(top);
解説
stopIfTrueメソッドは、Trueに評価されたルールのうち優先度の最も高いルールを適用し、それより優先度の低いルールを無視します。2つのルールが競合する場合は、優先度の高い方のルールが適用されます。2つのルールが競合しない場合(たとえば、一方のルールが太字フォントを使用し、もう一方のルールがセルの背景色を使用する場合)は、両方のルールが適用されます。

関連トピック

参照

ConditionRuleBase タイプ

 

 


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