An event arguments of SuggestedTextChangedEventHandler
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public class SuggestedTextChangedEventArgs : EventArgs
Inheritance: objectEventArgsSuggestedTextChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the SuggestedTextChangedEventArgs class.
C#
public SuggestedTextChangedEventArgs(string text, string suggestedText, TextPosition startPosition, TextPosition endPosition, AutoCompleteAction action)
The text.
suggestedTextstringThe suggested text.
startPositionTextPositionThe start position.
endPositionTextPositionThe end position.
actionAutoCompleteActionThe action.
Properties
Gets the auto-complete action.
C#
public AutoCompleteAction Action { get; }
Gets or sets the end position.
C#
public TextPosition EndPosition { get; set; }
The end position.
Gets or sets the start position.
C#
public TextPosition StartPosition { get; set; }
The start position.
Gets the suggested text.
C#
public string SuggestedText { get; }