Class CompletionListTextInsertingEventArgs
Event args used in the TextInserting event.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.SyntaxEditor
Assembly: Telerik.Windows.Controls.SyntaxEditor.dll
Syntax
public class CompletionListTextInsertingEventArgs : EventArgs
Constructors
CompletionListTextInsertingEventArgs()
Initializes a new instance of the CompletionListTextInsertingEventArgs class.
Declaration
public CompletionListTextInsertingEventArgs()
Properties
Cancel
Gets or sets a value indication whether the text insertion should be cancelled.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
SpanToReplace
Gets or sets the span which will be replaced with the inserted text.
Declaration
public Span SpanToReplace { get; set; }
Property Value
Span
|
TextToInsert
Gets or sets the text that is selected from the CompletionListPopup.
Declaration
public string TextToInsert { get; set; }
Property Value
System.String
|