Class
TextInsertedEventArgs

Represents the event arguments for the TextInserted event.

Definition

Namespace:Telerik.Windows.Documents.UI

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public class TextInsertedEventArgs : EventArgs

Inheritance: objectEventArgsTextInsertedEventArgs

Inherited Members EventArgs.Empty

Constructors

TextInsertedEventArgs(string, InputEvents, ImeLanguage)

Declaration

cs-api-definition
public TextInsertedEventArgs(string text, InputEvents currentEvent, ImeLanguage imeLanguage)

Parameters

text

string

currentEvent

InputEvents

imeLanguage

ImeLanguage

Properties

CurrentEvent

Get the current event that triggered the text insertion.

Declaration

cs-api-definition
public InputEvents CurrentEvent { get; }

Property Value

InputEvents

ImeLanguage

Gets the IME (Input Method Editor) language associated with the text insert event.

Declaration

cs-api-definition
public ImeLanguage ImeLanguage { get; }

Property Value

ImeLanguage

The IME language as a string, representing the language used for character input.

Text

Gets the text that was inserted.

Declaration

cs-api-definition
public string Text { get; }

Property Value

string

The inserted text as a string.