Represents RadTextBoxControlElement text changed event arguments
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public class TextBoxChangedEventArgs : EventArgs
Inheritance: objectEventArgsTextBoxChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the TextBoxChangedEventArgs class.
C#
public TextBoxChangedEventArgs(string text, int caretPosition, TextBoxChangeAction action)
The text.
caretPositionintThe caret position.
actionTextBoxChangeActionThe action.
Properties
Gets the text change action.
C#
public TextBoxChangeAction Action { get; }
Gets the caret position.
C#
public int CaretPosition { get; }