[Overview][Types][Classes][Procedures and functions][Index] Reference for unit 'Masks' (#lazutils)

TMaskString

Represent characters and symbols in a mask.

Declaration

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;

Description

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.

See also

TMask.Matches

  

Determines whether the specified file name matches the mask value.

TMask.MatchesWindowsMask

  

Determines whether a filename matches the mask using Windows file system masks.

Masks Overview

  

Masks Overview.