[]
        
(Showing Draft Content)

GC.Spread.Sheets.ConditionalFormatting.RuleType

列挙体: RuleType

Sheets.ConditionalFormatting.RuleType

ルールタイプを指定します。

実例

// 次のサンプルコードは、NormalConditionRule のルールタイプを設定する方法を示します。
activeSheet.setArray(0, 0, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
activeSheet.setArray(0, 2, [1, 2, 3, 4, 5, 6, 5, 8, 1, 10]);
var greatThan = new GC.Spread.Sheets.ConditionalFormatting.NormalConditionRule();
greatThan.ruleType(GC.Spread.Sheets.ConditionalFormatting.RuleType.cellValueRule);
greatThan.operator(GC.Spread.Sheets.ConditionalFormatting.ComparisonOperators.greaterThan);
greatThan.value1(4);
greatThan.ranges([new GC.Spread.Sheets.Range(0, 0, 10, 1)]);
var style = new GC.Spread.Sheets.Style();
style.backColor = "red";
greatThan.style(style);
activeSheet.conditionalFormats.addRule(greatThan);
var unique = new GC.Spread.Sheets.ConditionalFormatting.NormalConditionRule();
unique.ruleType(GC.Spread.Sheets.ConditionalFormatting.RuleType.uniqueRule);
unique.operator(GC.Spread.Sheets.ConditionalFormatting.ComparisonOperators.greaterThan);
unique.value1(5);
unique.ranges([new GC.Spread.Sheets.Range(0, 2, 10, 1)]);
var style = new GC.Spread.Sheets.Style();
style.backColor = "gold";
unique.style(style);
activeSheet.conditionalFormats.addRule(unique);

Table of contents

列挙メンバー

列挙メンバー

averageRule

averageRule = 8

平均との比較ルールを指定します。


cellValueRule

cellValueRule = 1

セルの値ルールを指定します。


columnStateRule

columnStateRule = 15

特定の列状態ルールを削除します。


conditionRuleBase

conditionRuleBase = 0

条件のベースルールを示します。


dataBarRule

dataBarRule = 12

データバールールを指定します。


dateOccurringRule

dateOccurringRule = 4

日付ルールを指定します。


duplicateRule

duplicateRule = 7

重複する値ルールを指定します。


formulaRule

formulaRule = 3

数式ルールを指定します。


iconSetRule

iconSetRule = 13

アイコンセットルールを指定します。


rowStateRule

rowStateRule = 14

行状態ルールを削除します。


specificTextRule

specificTextRule = 2

特定のテキストルールを指定します。


threeScaleRule

threeScaleRule = 11

3色カラースケールルールを指定します。


top10Rule

top10Rule = 5

上位/下位ルールを指定します。


twoScaleRule

twoScaleRule = 10

2色カラースケールルールを指定します。


uniqueRule

uniqueRule = 6

一意の値ルールを指定します。