Skip to main content

TcxEditMaskKind Enum

Determines the mask type of a mask editor.

Declaration

TcxEditMaskKind = (
    emkStandard,
    emkRegExpr,
    emkRegExprEx
);

Members

Name
emkStandard
emkRegExpr
emkRegExprEx

Remarks

A mask editor supports three mask types.

Kind Description
emkStandard Simple mask. Same as the Delphi Native MaskEdit.
emkRegExpr Mask based on regular expressions.
emkRegExprEx Same as emkRegExpr, but has the auto-completion feature.

The default value of the MaskKind property is emkStandard.

For more information see Using MaskEdit.

See Also