Spread.Sheets
text メソッド
比較用の文字列。
比較用の文字列を取得または設定します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.ConditionalFormatting.NormalConditionRule(ruleType, ranges, style, operator, value1, value2, text, formula, type, rank);
var returnValue; // Type: any
returnValue = instance.text(value);
Javascript (Specification) 
function text( 
   value : string
) : any;

パラメータ

value
比較用の文字列。

戻り値の型

値が設定されていない場合は、比較用の文字列を返します。値が設定されている場合は、数値条件ルールを返します。
使用例
次のサンプルコードは、ルールを作成します。
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.specificTextRule);
rule.style(style);
rule.text("test");
rule.operator(GC.Spread.Sheets.ConditionalFormatting.TextComparisonOperators.contains);
rule.ranges([new GC.Spread.Sheets.Range(0, 0, 10, 1)]);
activeSheet.conditionalFormats.addRule(rule);
activeSheet.setValue(0, 0, "testing");
activeSheet.setValue(1, 0, "test");
activeSheet.setValue(2, 0, "a");
activeSheet.setValue(3, 0, "t");

関連トピック

参照

NormalConditionRule クラス

 

 


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