Class TextChangedEventArgs
TextChangedEventArgs event arguments.
Inheritance
System.Object
System.EventArgs
TextChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Tizen.UIExtensions.Common
Assembly: Tizen.UIExtensions.NUI.dll
Syntax
public class TextChangedEventArgs : EventArgs
Constructors
TextChangedEventArgs(String, String)
Creates a new TextChangedEventArgs object that represents a change from oldTextValue
to newTextValue
.
Declaration
public TextChangedEventArgs(string oldTextValue, string newTextValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | oldTextValue | Old text value of |
System.String | newTextValue | New text value of |
Properties
NewTextValue
The new text
Declaration
public string NewTextValue { get; }
Property Value
Type | Description |
---|---|
System.String |
OldTextValue
The old text
Declaration
public string OldTextValue { get; }
Property Value
Type | Description |
---|---|
System.String |