Class CompletionInfo
Class CompletionInfo. Implements the System.ComponentModel.INotifyPropertyChanged
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.SyntaxEditor.UI.IntelliPrompt.Completion
Assembly: Telerik.Windows.Controls.SyntaxEditor.dll
Syntax
public class CompletionInfo : INotifyPropertyChanged
Constructors
CompletionInfo(String)
Initializes a new instance of the CompletionInfo class.
Declaration
public CompletionInfo(string text)
Parameters
System.String
text
The text. |
CompletionInfo(String, String)
Initializes a new instance of the CompletionInfo class.
Declaration
public CompletionInfo(string text, string description)
Parameters
System.String
text
The text. |
System.String
description
The description. |
CompletionInfo(String, String, String, ImageSource)
Initializes a new instance of the CompletionInfo class.
Declaration
public CompletionInfo(string text, string description, string insertionText, ImageSource icon)
Parameters
System.String
text
The text. |
System.String
description
The description. |
System.String
insertionText
The insertion text. |
System.Windows.Media.ImageSource
icon
The icon. |
CompletionInfo(String, String, ImageSource)
Initializes a new instance of the CompletionInfo class.
Declaration
public CompletionInfo(string text, string description, ImageSource icon)
Parameters
System.String
text
The text. |
System.String
description
The description. |
System.Windows.Media.ImageSource
icon
The icon. |
CompletionInfo(String, ImageSource)
Initializes a new instance of the CompletionInfo class.
Declaration
public CompletionInfo(string text, ImageSource icon)
Parameters
System.String
text
The text. |
System.Windows.Media.ImageSource
icon
The icon. |
Properties
Description
Gets or sets the description.
Declaration
public string Description { get; set; }
Property Value
System.String
The description. |
Icon
Gets the icon.
Declaration
public ImageSource Icon { get; }
Property Value
System.Windows.Media.ImageSource
The icon. |
InsertionText
Gets the insertion text.
Declaration
public string InsertionText { get; }
Property Value
System.String
The insertion text. |
IsClosestMatch
Gets or sets a value indicating whether this instance is closest match.
Declaration
public bool IsClosestMatch { get; set; }
Property Value
System.Boolean
|
Text
Gets the text.
Declaration
public string Text { get; }
Property Value
System.String
The text. |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|