[]
Sheets.ConditionalFormatting.DateCompareType
Specifies the date compare type.
example
//This example validates cell data.
var nCondition = new GC.Spread.Sheets.ConditionalFormatting.Condition(GC.Spread.Sheets.ConditionalFormatting.ConditionType.dateCondition, {compareType: GC.Spread.Sheets.ConditionalFormatting.DateCompareType.before, expected: new Date(2012, 11, 31)});
var validator = new GC.Spread.Sheets.DataValidation.DefaultDataValidator(nCondition);
validator.type(GC.Spread.Sheets.DataValidation.CriteriaType.custom);
activeSheet.getCell(0, 0, GC.Spread.Sheets.SheetArea.viewport).validator(validator);
spread.options.highlightInvalidData = true;
activeSheet.setValue(0, 0, new Date(2012, 12, 12));
• after = 4
Indicates whether the date time is after a certain time.
• afterEqualsTo = 5
Indicates whether the date time is after or equal to a certain time.
• before = 2
Indicates whether the date time is before a certain time.
• beforeEqualsTo = 3
Indicates whether the date time is before or equal to a certain time.
• equalsTo = 0
Indicates whether the date time is equal to a certain time.
• notEqualsTo = 1
Indicates whether the date time is not equal to a certain time.