New to Telerik UI for WPFStart a free 30-day trial

Event arguments class used for the RadMaskedInput controls' ValueChanging event.

Definition

Namespace:Telerik.Windows.Controls.MaskedInput

Assembly:Telerik.Windows.Controls.Input.dll

Syntax:

C#
public class RadMaskedInputValueChangingEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsRadMaskedInputValueChangingEventArgs

Constructors

Initializes a new instance of the RadMaskedInputValueChangingEventArgs class.

C#
public RadMaskedInputValueChangingEventArgs(object newValue, string maskedText, RoutedEvent routedEvent, object source)
Parameters:newValueobject

The new value.

maskedTextstring

The masked text.

routedEventRoutedEvent

The routed event.

sourceobject

The source.

Properties

Gets the current masked text.

C#
public string MaskedText { get; }
Property Value:

The current masked text.

Gets the new value.

C#
public object NewValue { get; }
Property Value:

The new value.