C1.iOS.Input Assembly / C1.iOS.Input Namespace / TextChangedEventArgs Class / TextChangedEventArgs Constructor
The old text in the ComboBox.
The new text in the ComboBox.


In This Topic
TextChangedEventArgs Constructor
In This Topic
Initializes a new instance of the TextChangedEventArgs class.
Syntax
'Declaration
 
Public Function New( _
   ByVal oldText As String, _
   ByVal newText As String _
)
 
'Usage
 
Dim oldText As String
Dim newText As String
 
Dim instance As New TextChangedEventArgs(oldText, newText)

Parameters

oldText
The old text in the ComboBox.
newText
The new text in the ComboBox.
See Also