Class CompletionFilterResult
Class CompletionFilterResult.
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Controls.SyntaxEditor.UI.IntelliPrompt.Completion
Assembly: Telerik.WinControls.SyntaxEditor.dll
Syntax
public class CompletionFilterResult
Constructors
CompletionFilterResult()
Initializes a new instance of the CompletionFilterResult class.
Declaration
public CompletionFilterResult()
CompletionFilterResult(CompletionInfo)
Initializes a new instance of the CompletionFilterResult class.
Declaration
public CompletionFilterResult(CompletionInfo exactMatch)
Parameters
CompletionInfo
exactMatch
The exact match. |
CompletionFilterResult(CompletionInfo, CompletionInfo)
Initializes a new instance of the CompletionFilterResult class.
Declaration
public CompletionFilterResult(CompletionInfo exactMatch, CompletionInfo closestMatch)
Parameters
CompletionInfo
exactMatch
The exact match. |
CompletionInfo
closestMatch
The closest match. |
Properties
ClosestMatch
Gets or sets the closest match.
Declaration
public CompletionInfo ClosestMatch { get; set; }
Property Value
CompletionInfo
The closest match. |
ExactMatch
Gets or sets the exact match.
Declaration
public CompletionInfo ExactMatch { get; set; }
Property Value
CompletionInfo
The exact match. |