+ For more information, please see @ref overview_validator.
+
+ @beginStyleTable
+ @style{wxFILTER_NONE}
+ No filtering takes place.
+ @style{wxFILTER_ASCII}
+ Non-ASCII characters are filtered out.
+ @style{wxFILTER_ALPHA}
+ Non-alpha characters are filtered out.
+ @style{wxFILTER_ALPHANUMERIC}
+ Non-alphanumeric characters are filtered out.
+ @style{wxFILTER_NUMERIC}
+ Non-numeric characters are filtered out.
+ @style{wxFILTER_INCLUDE_LIST}
+ Use an include list. The validator checks if the user input is on
+ the list, complaining if not. See SetIncludes().
+ @style{wxFILTER_EXCLUDE_LIST}
+ Use an exclude list. The validator checks if the user input is on
+ the list, complaining if it is. See SetExcludes().
+ @style{wxFILTER_INCLUDE_CHAR_LIST}
+ Use an include list. The validator checks if each input character is
+ in the list (one character per list element), complaining if not.
+ See SetIncludes().
+ @style{wxFILTER_EXCLUDE_CHAR_LIST}
+ Use an include list. The validator checks if each input character is
+ in the list (one character per list element), complaining if it is.
+ See SetExcludes().
+ @endStyleTable