'Declaration
Public Event CustomMask As CustomMaskEventHandler
'Usage
Dim instance As MaskFormatter Dim handler As CustomMaskEventHandler AddHandler instance.CustomMask, handler
public event CustomMaskEventHandler CustomMask
Event Data
The event handler receives an argument of type CustomMaskEventArgs containing data related to this event. The following CustomMaskEventArgs properties provide information specific to this event.
Property | Description |
---|---|
CustomMaskCharacter | Gets the custom mask character. |
CustomMaskIndex | Gets the index of the custom mask. |
InputCharacter | Gets or sets the input character. |
Valid | Gets or sets whether the value is valid. |
See Also