Skip to main content
All docs
V24.2

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

CustomMaskEventArgs.ActionType Property

Gets the user action.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public CustomTextMaskInputAction ActionType { get; }

#Property Value

Type Description
DevExpress.Data.Mask.CustomTextMaskInputAction

The user action.

#Remarks

The ActionType property returns the following values that allow you to process user actions:

Init
The editor is initialized or received focus.
Insert
A user enters a character or pastes text to the editor.
Delete
A user presses the Delete key or cuts text from the editor.
Backspace
A user presses the Backspace key.
SpinUp
A user clicks the SpinUp button, presses the UpArrow key, or scrolls the mouse wheel up.
SpinDown
A user clicks the SpinDown button, presses the DownArrow key, or scrolls the mouse wheel down.
See Also