Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxEditMaskKind Enum

Determines the mask type of a mask editor.

#Declaration

Delphi
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