[]
        
(Showing Draft Content)

GC.Spread.Sheets.ConditionalFormatting.DateOccurringType

列挙型: DateOccurringType

Sheets.ConditionalFormatting.DateOccurringType

日付タイプを指定します。

実例

// 次のサンプルコードは、ルールを作成します。
var style = new GC.Spread.Sheets.Style();
style.backColor = "red";
var rule = new GC.Spread.Sheets.ConditionalFormatting.NormalConditionRule(GC.Spread.Sheets.ConditionalFormatting.RuleType.dateOccurringRule, [new GC.Spread.Sheets.Range(0,0,10,1)], style, null, null, null, null, null, GC.Spread.Sheets.ConditionalFormatting.DateOccurringType.nextWeek);
activeSheet.conditionalFormats.addRule(rule);
var d = new Date();
activeSheet.setValue(0, 0, d);
activeSheet.setValue(1, 0, new Date(d.setDate(d.getDate()+1)));
activeSheet.setValue(2, 0, new Date(d.setDate(d.getDate()+5)));
activeSheet.setValue(3, 0,new Date(d.setDate(d.getDate()+6)));
activeSheet.setValue(4, 0,new Date(d.setDate(d.getDate()+7)));
activeSheet.setValue(5, 0, new Date(d.setDate(d.getDate()+8)));

Table of contents

Enumeration members

Enumeration members

last7Days

last7Days = 3

過去7日間を指定します。


lastMonth

lastMonth = 5

先月を指定します。


lastQuarter

lastQuarter = 12

前の四半期を指定します。


lastWeek

lastWeek = 8

先週を指定します。


lastYear

lastYear = 15

前の年を指定します。


nextMonth

nextMonth = 6

次の月を指定します。


nextQuarter

nextQuarter = 10

次の四半期を指定します。


nextWeek

nextWeek = 9

来週を指定します。


nextYear

nextYear = 13

次の年を指定します。


thisMonth

thisMonth = 4

今月を指定します。


thisQuarter

thisQuarter = 11

現在の四半期を指定します。


thisWeek

thisWeek = 7

今週を指定します。


thisYear

thisYear = 14

現在の年を指定します。


today

today = 0

今日を指定します。


tomorrow

tomorrow = 2

明日を指定します。


yesterday

yesterday = 1

昨日を指定します。