'Declaration
Public Event BeforeTextChanged As EventHandler(Of TextChangedEventArgs)
'Usage
Dim instance As C1CheckBox Dim handler As EventHandler(Of TextChangedEventArgs) AddHandler instance.BeforeTextChanged, handler
public event EventHandler<TextChangedEventArgs> BeforeTextChanged
Event Data
The event handler receives an argument of type Android.Text.TextChangedEventArgs containing data related to this event. The following TextChangedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
AfterCount | |
BeforeCount | |
Start | |
Text |
See Also