[]
        
(Showing Draft Content)

C1.Win.Input.ValidationRegexOptions

ValidationRegexOptions Enum

Specifies the method of regular expression matching.

Namespace: C1.Win.Input
Assembly: C1.Win.Input.8.dll
Syntax
[Flags]
public enum ValidationRegexOptions

Fields

Name Description
ECMAScript

Enables ECMAScript-compliant behavior for the expression. This flag can be used only in conjunction with the IgnoreCase, Multiline, and Compiled flags.

ExplicitCapture

Specifies that the only valid captures are explicitly named or numbered groups of the form.

IgnorePatternWhitespace

Eliminates unescaped white space from the pattern and enables comments marked with #.

Multiline

Multiline mode. Changes the meaning of ^ and $ so they match at the beginning and end, respectively, of any line, and not just the beginning and end of the entire string.

None

Specifies that no options are set.

RightToLeft

Specifies that the search will be from right to left instead of from left to right.

Singleline

Specifies single-line mode. Changes the meaning of the dot (.) so it matches every character (instead of every character except \n).