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

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 EventArgs.Empty

Constructors

Initializes a new instance of the SuggestedTextChangedEventArgs class.

C#
public SuggestedTextChangedEventArgs(string text, string suggestedText, TextPosition startPosition, TextPosition endPosition, AutoCompleteAction action)
Parameters:textstring

The text.

suggestedTextstring

The suggested text.

startPositionTextPosition

The start position.

endPositionTextPosition

The end position.

actionAutoCompleteAction

The action.

Properties

Gets the auto-complete action.

C#
public AutoCompleteAction Action { get; }

Gets or sets the end position.

C#
public TextPosition EndPosition { get; set; }
Property Value:

The end position.

Gets or sets the start position.

C#
public TextPosition StartPosition { get; set; }
Property Value:

The start position.

Gets the suggested text.

C#
public string SuggestedText { get; }

Gets the text.

C#
public string Text { get; }