Class
CompletionListTextInsertingEventArgs

Event args used in the TextInserting event.

Definition

Namespace:Telerik.Windows.Controls.SyntaxEditor

Assembly:Telerik.Windows.Controls.SyntaxEditor.dll

Syntax:

cs-api-definition
public class CompletionListTextInsertingEventArgs : EventArgs

Inheritance: objectEventArgsCompletionListTextInsertingEventArgs

Inherited Members EventArgs.Empty

Constructors

CompletionListTextInsertingEventArgs()

Initializes a new instance of the CompletionListTextInsertingEventArgs class.

Declaration

cs-api-definition
public CompletionListTextInsertingEventArgs()

Properties

Cancel

Gets or sets a value indication whether the text insertion should be cancelled.

Declaration

cs-api-definition
public bool Cancel { get; set; }

Property Value

bool

SpanToReplace

Gets or sets the span which will be replaced with the inserted text.

Declaration

cs-api-definition
public Span SpanToReplace { get; set; }

Property Value

Span

TextToInsert

Gets or sets the text that is selected from the CompletionListPopup.

Declaration

cs-api-definition
public string TextToInsert { get; set; }

Property Value

string