Class TextBoxChangingEventArgs
Represents RadTextBoxControlElement text changing event arguments
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class TextBoxChangingEventArgs : TextChangingEventArgs
Constructors
TextBoxChangingEventArgs(Int32, Int32, String, String, TextBoxChangeAction)
Initializes a new instance of the TextBoxChangingEventArgs class.
Declaration
public TextBoxChangingEventArgs(int startPosition, int length, string oldText, string newText, TextBoxChangeAction action)
Parameters
System.Int32
startPosition
The start position. |
System.Int32
length
The length. |
System.String
oldText
The old text. |
System.String
newText
The new text. |
TextBoxChangeAction
action
The action. |
Properties
Action
Gets the text change action.
Declaration
public TextBoxChangeAction Action { get; }
Property Value
TextBoxChangeAction
|
Length
Gets the selection length.
Declaration
public int Length { get; }
Property Value
System.Int32
|
StartPosition
Gets the start position.
Declaration
public int StartPosition { get; }
Property Value
System.Int32
|