| [Overview][Types][Classes][Procedures and functions][Index] |
Represents details for mask character types in the TMaskCharType enumeration.
Source position: masks.pas line 30
type TMaskChar = record |
||
case CharType: TMaskCharType of |
||
mcChar: ( |
||
CharValue: TUtf8Char; |
|
UTF-8 character value for the mask character. |
); |
||
mcCharSet: ( |
||
Negative: Boolean; |
|
True when the "not" operator (!) is included in the character set expression in a mask. |
SetValue: PCharSet; |
||
); |
||
mcAnyChar, mcAnyText: ( |
||
); |
||
end; |
TMaskChar is a variant record type with members used to represent details for mask character types in the TMaskCharType enumeration. TMaskChar is used to implement the Chars member in the TMaskString record type.
|
Represents character types used in a mask. |
|
|
Masks Overview. |