TextChangingEventArgs Constructor (String, RangeInt32, String, Boolean) | 
  
    Namespace: 
   Eto.Forms
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
Syntaxpublic TextChangingEventArgs(
	string text,
	Range<int> range,
	string oldText,
	bool fromUser
)
Public Sub New ( 
	text As String,
	range As Range(Of Integer),
	oldText As String,
	fromUser As Boolean
)
new : 
        text : string * 
        range : Range<int> * 
        oldText : string * 
        fromUser : bool -> TextChangingEventArgsParameters
- text
 - Type: SystemString
Text to be replaced in the range. - range
 - Type: Eto.FormsRangeInt32
Range of text to be effected. - oldText
 - Type: SystemString
Current text in the control. - fromUser
 - Type: SystemBoolean
Value indicating that the change was initiated from the user 
See Also