GcSpread.Sheets Namespace > DateExCondition type : DateExCondition Constructor |
var instance = new GcSpread.Sheets.DateExCondition(type, style);
function DateExCondition( type : DateOccurringType, style : Style ) : DateExCondition;
var nCondition = new GcSpread.Sheets.DateExCondition(); nCondition.formula = "$C$1"; var validator = new GcSpread.Sheets.DefaultDataValidator(nCondition) activeSheet.getCell(0, 0, GcSpread.Sheets.SheetArea.viewport).dataValidator(validator); spread.highlightInvalidData(true); activeSheet.setValue(0, 0, new Date(2012, 12, 12)); activeSheet.setValue(0, 2, new Date(2012, 11, 31));