ClassCompletionInfo
Class CompletionInfo. Implements the INotifyPropertyChanged
Definition
Namespace:Telerik.Windows.Controls.SyntaxEditor.UI.IntelliPrompt.Completion
Assembly:Telerik.Windows.Controls.SyntaxEditor.dll
Syntax:
public class CompletionInfo : INotifyPropertyChanged
Inheritance: objectCompletionInfo
Implements:
Constructors
CompletionInfo(string)
Initializes a new instance of the CompletionInfo class.
CompletionInfo(string, ImageSource)
Initializes a new instance of the CompletionInfo class.
Declaration
public CompletionInfo(string text, ImageSource icon)
Parameters
text
The text.
icon
ImageSource
The icon.
CompletionInfo(string, string)
Initializes a new instance of the CompletionInfo class.
CompletionInfo(string, string, ImageSource)
Initializes a new instance of the CompletionInfo class.
CompletionInfo(string, string, string, ImageSource)
Initializes a new instance of the CompletionInfo class.
Properties
Description
Gets or sets the description.
Declaration
public string Description { get; set; }
Property Value
The description.
Icon
Gets the icon.
Declaration
public ImageSource Icon { get; }
Property Value
ImageSource
The icon.
InsertionText
Gets the insertion text.
Declaration
public string InsertionText { get; }
Property Value
The insertion text.
IsClosestMatch
Gets or sets a value indicating whether this instance is closest match.
Declaration
public bool IsClosestMatch { get; set; }
Property Value
true if this instance is closest match; otherwise, false.
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Value
Implements