Class TextChangedByUserInteractionEventArgs
Provides data for the Telerik.Windows.Controls.Primitives.TextBoxTextSource.PreviewTextChangedByUserInteraction event.
Inheritance
Namespace: Telerik.Windows.Controls.Primitives
Assembly: Telerik.Windows.Controls.dll
Syntax
public class TextChangedByUserInteractionEventArgs : EventArgs
Constructors
TextChangedByUserInteractionEventArgs()
Declaration
public TextChangedByUserInteractionEventArgs()
Properties
OldSelectionLength
Gets the length of the selection that was active before the user interaction caused the text change.
Declaration
public int OldSelectionLength { get; set; }
Property Value
System.Int32
|
OldSelectionStart
Provides data for the Telerik.Windows.Controls.Primitives.TextBoxTextSource.PreviewTextChangedByUserInteraction event that occurs when the text content of a control has changed as a result of user interaction.
Declaration
public int OldSelectionStart { get; set; }
Property Value
System.Int32
|
OldText
Gets the previous text of the control before the user interaction occurred.
Declaration
public string OldText { get; set; }
Property Value
System.String
|