Class MaskBlurEventArgs
Provides information about an Blur event being raised.
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class MaskBlurEventArgs : Object
Constructors
MaskBlurEventArgs()
Declaration
public MaskBlurEventArgs()
Properties
Container
Gets the MaskedTextBox container element.
Declaration
public ElementReference Container { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.ElementReference | An Microsoft.AspNetCore.Components.ElementReference object that represents the MaskedTextBox container element. |
MaskedValue
Gets the value of the SfMaskedTextBox with the masked format.
Declaration
public string MaskedValue { get; set; }
Property Value
Type | Description |
---|---|
System.String | Returns the string value. |
Value
Gets the value of SfMaskedTextBox.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |