Skip to main content
All docs
V23.2

CustomMaskEventArgs.ActionType Property

Gets the user action.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v23.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