DK11 for Delphi | GisFieldRules.TGIS_FieldValueCheckFormula | Enums
Type of formula checks.
// Delphi type TGIS_FieldValueCheckFormula = ( Required, Regex, Expression, StringEQ, StringNE, StringLT, StringLE, StringGT, StringGE, StringIn, TextEQ, TextNE, TextLT, TextLE, TextGT, TextGE, TextIn, NumberRequired, NumberEQ, NumberNE, NumberLT, NumberLE, NumberGT, NumberGE, DateRequired, DateEQ, DateNE, DateLT, DateLE, DateGT, DateGE );
// C++ Builder enum DECLSPEC_DENUM TGIS_FieldValueCheckFormula unsigned short { Required, Regex, Expression, StringEQ, StringNE, StringLT, StringLE, StringGT, StringGE, StringIn, TextEQ, TextNE, TextLT, TextLE, TextGT, TextGE, TextIn, NumberRequired, NumberEQ, NumberNE, NumberLT, NumberLE, NumberGT, NumberGE, DateRequired, DateEQ, DateNE, DateLT, DateLE, DateGT, DateGE };
Name | Value | Description | |
---|---|---|---|
Required | Value is required. | ||
Regex | Value is check against regular expression. | ||
Expression | Value is check against formula (like math expression); NOT SUPPORTRED YET | ||
StringEQ | Value is equal to string, case sensitive. | ||
StringNE | Value is not equal to string, case sensitive. | ||
StringLT | Value is is less the string, case sensitive. | ||
StringLE | Value is is less equal then string, case sensitive. | ||
StringGT | Value is is great then string, case sensitive. | ||
StringGE | Value is is great equal then string, case sensitive. | ||
StringIn | Value is is one of provided strings, case sensitive; NOT SUPPORTRED YET. | ||
TextEQ | Value is equal to text, case insensitive. | ||
TextNE | Value is not equal to text, case insensitive. | ||
TextLT | Value is is less the text, case insensitive. | ||
TextLE | Value is is less equal then text, case insensitive. | ||
TextGT | Value is is great then text, case insensitive. | ||
TextGE | Value is is great equal then text, case insensitive. | ||
TextIn | Value is is one of provided text, case insensitive; NOT SUPPORTRED YET. | ||
NumberRequired | Proper number required. | ||
NumberEQ | Value is equal to number. | ||
NumberNE | Value is not equal to number. | ||
NumberLT | Value is is less then the number. | ||
NumberLE | Value is is less equal then the number. | ||
NumberGT | Value is is great then the number. | ||
NumberGE | Value is is great equal then the number. | ||
DateRequired | Proper date required; NOT SUPPORTRED YET. | ||
DateEQ | Value is equal to date; NOT SUPPORTRED YET. | ||
DateNE | Value is not equal to date; NOT SUPPORTRED YET. | ||
DateLT | Value is not equal to date; NOT SUPPORTRED YET. | ||
DateLE | Value is is less equal then the date; NOT SUPPORTRED YET. | ||
DateGT | Value is is great then the date; NOT SUPPORTRED YET. | ||
DateGE | Value is is great equal then the date; NOT SUPPORTRED YET. | ||