Class
TextBoxChangingEventArgs

Represents RadTextBoxControlElement text changing event arguments

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class TextBoxChangingEventArgs : TextChangingEventArgs

Inheritance: objectEventArgsCancelEventArgsTextChangingEventArgsTextBoxChangingEventArgs

Inherited Members TextChangingEventArgs.OldValueTextChangingEventArgs.NewValueCancelEventArgs.CancelEventArgs.Empty

Constructors

TextBoxChangingEventArgs(int, int, string, string, TextBoxChangeAction)

Initializes a new instance of the TextBoxChangingEventArgs class.

Declaration

cs-api-definition
public TextBoxChangingEventArgs(int startPosition, int length, string oldText, string newText, TextBoxChangeAction action)

Parameters

startPosition

int

The start position.

length

int

The length.

oldText

string

The old text.

newText

string

The new text.

action

TextBoxChangeAction

The action.

Properties

Action

Gets the text change action.

Declaration

cs-api-definition
public TextBoxChangeAction Action { get; }

Property Value

TextBoxChangeAction

Length

Gets the selection length.

Declaration

cs-api-definition
public int Length { get; }

Property Value

int

StartPosition

Gets the start position.

Declaration

cs-api-definition
public int StartPosition { get; }

Property Value

int