| [Overview][Types][Classes][Procedures and functions][Index] |
Represent characters and symbols in a mask.
Source position: masks.pas line 37
type TMaskString = record |
||
MinLength: Integer; |
|
Minimum length for a value that matches a mask. |
MaxLength: Integer; |
|
Maximum length for a value that matches a mask. |
Chars: array of TMaskChar; |
|
Array with the TMaskChar information for a mask. |
end; |
TMaskString is a record type with members representing the characters or symbols in a mask, and the minimum and maximum length for the string. TMaskString is used in the implementation of methods in TMask.
|
Determines whether the specified file name matches the mask value. |
|
|
Determines whether a filename matches the mask using Windows file system masks. |
|
|
Masks Overview. |