ConvertEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that handles the Parse and Format events of a Binding.
- C#
- VB.NET
public delegate void ConvertEventHandler(Object sender, ConvertEventArgs e)
Public Delegate Sub ConvertEventHandler(ByVal sender As [Object], ByVal e As ConvertEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | ConvertEventArgs | A ConvertEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| TypedTextBox.Parse | Fired when the control parses the text into the typed Value. |
| TypedTextBox.Format | Fired when the value control formats the typed Value to display it to the user. |
| Binding.Format | Fired when the property of a control is bound to a data value. |
| Binding.Parse | Fired when the value of a data-bound control changes. |