GC.Spread.Sheets.ConditionalFormatting Namespace : DateCompareType Enumeration |
Member | Description |
---|---|
after | Indicates whether the date time is after a certain time. |
afterEqualsTo | Indicates whether the date time is after or equal to a certain time. |
before | Indicates whether the date time is before a certain time. |
beforeEqualsTo | Indicates whether the date time is before or equal to a certain time. |
equalsTo | Indicates whether the date time is equal to a certain time. |
notEqualsTo | Indicates whether the date time is not equal to a certain time. |
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));
Object
GC.Spread.Sheets.ConditionalFormatting.DateCompareType