GcSpread.Sheets Namespace : GeneralCompareType Enumeration |
Member | Description |
---|---|
EqualsTo | Indicates whether the number is equal to a specified number. |
GreaterThan | Indicates whether the number is greater than a specified number. |
GreaterThanOrEqualsTo | Indicates whether the number is greater than or equal to a specified number. |
LessThan | Indicates whether the number is less than a specified number. |
LessThanOrEqualsTo | Indicates whether the number is less than or equal to a specified number. |
NotEqualsTo | Indicates whether the number is not equal to a specified number. |
var textLengthCondition = new GcSpread.Sheets.TextLengthCondition(GcSpread.Sheets.GeneralCompareType.GreaterThan, 5); var validator = new GcSpread.Sheets.DefaultDataValidator(textLengthCondition) activeSheet.getCell(0, 0, GcSpread.Sheets.SheetArea.viewport).dataValidator(validator); spread.highlightInvalidData(true); activeSheet.setValue(0, 0, "abcf");
Object
GcSpread.Sheets.GeneralCompareType