New to Telerik UI for WinFormsStart a free 30-day trial

Event args used in the TextInserting event.

Definition

Namespace:Telerik.WinForms.Controls.SyntaxEditor.UI

Assembly:Telerik.WinControls.SyntaxEditor.dll

Syntax:

C#
public class CompletionListTextInsertingEventArgs : EventArgs

Inheritance: objectEventArgsCompletionListTextInsertingEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the CompletionListTextInsertingEventArgs class.

C#
public CompletionListTextInsertingEventArgs()

Properties

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

C#
public bool Cancel { get; set; }

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

C#
public Span SpanToReplace { get; set; }

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

C#
public string TextToInsert { get; set; }