Class TextBoxChangedEventArgs
Represents RadTextBoxControlElement text changed event arguments
Inheritance
System.Object
System.EventArgs
TextBoxChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class TextBoxChangedEventArgs : EventArgs
Constructors
TextBoxChangedEventArgs(String, Int32, TextBoxChangeAction)
Initializes a new instance of the TextBoxChangedEventArgs class.
Declaration
public TextBoxChangedEventArgs(string text, int caretPosition, TextBoxChangeAction action)
Parameters
System.String
text
The text. |
System.Int32
caretPosition
The caret position. |
TextBoxChangeAction
action
The action. |
Properties
Action
Gets the text change action.
Declaration
public TextBoxChangeAction Action { get; }
Property Value
TextBoxChangeAction
|
CaretPosition
Gets the caret position.
Declaration
public int CaretPosition { get; }
Property Value
System.Int32
|
Text
Gets the text.
Declaration
public string Text { get; }
Property Value
System.String
|