New to Telerik UI for WinFormsStart a free 30-day trial

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 EventArgs.Empty

Constructors

Initializes a new instance of the TextBoxChangedEventArgs class.

C#
public TextBoxChangedEventArgs(string text, int caretPosition, TextBoxChangeAction action)
Parameters:textstring

The text.

caretPositionint

The caret position.

actionTextBoxChangeAction

The action.

Properties

Gets the text change action.

C#
public TextBoxChangeAction Action { get; }

Gets the caret position.

C#
public int CaretPosition { get; }

Gets the text.

C#
public string Text { get; }