Class
CompletionInfo

Class CompletionInfo. Implements the INotifyPropertyChanged

Definition

Namespace:Telerik.Windows.Controls.SyntaxEditor.UI.IntelliPrompt.Completion

Assembly:Telerik.Windows.Controls.SyntaxEditor.dll

Syntax:

cs-api-definition
public class CompletionInfo : INotifyPropertyChanged

Inheritance: objectCompletionInfo

Implements: INotifyPropertyChanged

Constructors

CompletionInfo(string)

Initializes a new instance of the CompletionInfo class.

Declaration

cs-api-definition
public CompletionInfo(string text)

Parameters

text

string

The text.

CompletionInfo(string, ImageSource)

Initializes a new instance of the CompletionInfo class.

Declaration

cs-api-definition
public CompletionInfo(string text, ImageSource icon)

Parameters

text

string

The text.

icon

ImageSource

The icon.

CompletionInfo(string, string)

Initializes a new instance of the CompletionInfo class.

Declaration

cs-api-definition
public CompletionInfo(string text, string description)

Parameters

text

string

The text.

description

string

The description.

CompletionInfo(string, string, ImageSource)

Initializes a new instance of the CompletionInfo class.

Declaration

cs-api-definition
public CompletionInfo(string text, string description, ImageSource icon)

Parameters

text

string

The text.

description

string

The description.

icon

ImageSource

The icon.

CompletionInfo(string, string, string, ImageSource)

Initializes a new instance of the CompletionInfo class.

Declaration

cs-api-definition
public CompletionInfo(string text, string description, string insertionText, ImageSource icon)

Parameters

text

string

The text.

description

string

The description.

insertionText

string

The insertion text.

icon

ImageSource

The icon.

Properties

Description

Gets or sets the description.

Declaration

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

Property Value

string

The description.

Icon

Gets the icon.

Declaration

cs-api-definition
public ImageSource Icon { get; }

Property Value

ImageSource

The icon.

InsertionText

Gets the insertion text.

Declaration

cs-api-definition
public string InsertionText { get; }

Property Value

string

The insertion text.

IsClosestMatch

Gets or sets a value indicating whether this instance is closest match.

Declaration

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

Property Value

bool

true if this instance is closest match; otherwise, false.

Text

Gets the text.

Declaration

cs-api-definition
public string Text { get; }

Property Value

string

The text.

Events

PropertyChanged

Occurs when a property value changes.

Declaration

cs-api-definition
public event PropertyChangedEventHandler PropertyChanged

Event Value

PropertyChangedEventHandler

Implements INotifyPropertyChanged.PropertyChanged