Represents RadTextBoxControlElement text changing event arguments
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public class TextBoxChangingEventArgs : TextChangingEventArgs
Inheritance: objectEventArgsCancelEventArgsTextChangingEventArgsTextBoxChangingEventArgs
Inherited Members
Constructors
Initializes a new instance of the TextBoxChangingEventArgs class.
C#
public TextBoxChangingEventArgs(int startPosition, int length, string oldText, string newText, TextBoxChangeAction action)
The start position.
lengthintThe length.
oldTextstringThe old text.
newTextstringThe new text.
actionTextBoxChangeActionThe action.
Properties
Gets the text change action.
C#
public TextBoxChangeAction Action { get; }
Gets the start position.
C#
public int StartPosition { get; }