Class CompletionInfo
Class CompletionInfo.
Implements the System.
Inheritance
Namespace: Telerik.Windows.Controls.SyntaxEditor.UI.IntelliPrompt.Completion
Assembly: Telerik.Windows.Controls.SyntaxEditor.dll
Syntax
public class CompletionInfo : Object, INotifyPropertyChanged
Constructors
CompletionInfo(String)
Initializes a new instance of the Completion
Declaration
public CompletionInfo(string text)
Parameters
System. The text. |
CompletionInfo(String, String)
Initializes a new instance of the Completion
Declaration
public CompletionInfo(string text, string description)
Parameters
System. The text. |
System. The description. |
CompletionInfo(String, String, String, ImageSource)
Initializes a new instance of the Completion
Declaration
public CompletionInfo(string text, string description, string insertionText, ImageSource icon)
Parameters
System. The text. |
System. The description. |
System. The insertion text. |
System. The icon. |
CompletionInfo(String, String, ImageSource)
Initializes a new instance of the Completion
Declaration
public CompletionInfo(string text, string description, ImageSource icon)
Parameters
System. The text. |
System. The description. |
System. The icon. |
CompletionInfo(String, ImageSource)
Initializes a new instance of the Completion
Declaration
public CompletionInfo(string text, ImageSource icon)
Parameters
System. The text. |
System. The icon. |
Properties
Description
Gets or sets the description.
Declaration
public string Description { get; set; }
Property Value
System. The description. |
Icon
Gets the icon.
Declaration
public ImageSource Icon { get; }
Property Value
System. The icon. |
InsertionText
Gets the insertion text.
Declaration
public string InsertionText { get; }
Property Value
System. 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.
|
Text
Gets the text.
Declaration
public string Text { get; }
Property Value
System. The text. |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.
|