GC.Spread.Sheets.ConditionalFormatting Namespace : GeneralComparisonOperators 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. |
spread.options.highlightInvalidData = true; var dv = new GC.Spread.Sheets.DataValidation.createTextLengthValidator(GC.Spread.Sheets.ConditionalFormatting.ComparisonOperators.greaterThan, 5); activeSheet.setDataValidator(0, 0, dv); activeSheet.setValue(0, 0, "abcf");
Object
GC.Spread.Sheets.ConditionalFormatting.GeneralComparisonOperators