Class AbstractAutoSuggestResult
Base class for the AutoSuggest results.
Inherited Members
Namespace: SdlSdl.TranslationStudioAutomationIntegrationApiAutoSuggest
Assembly: Sdl.TranslationStudioAutomation.IntegrationApi.dll
Syntax
public abstract class AbstractAutoSuggestResult
Constructors
AbstractAutoSuggestResult(AbstractEditingContext)
Initialize the instance of the AutoSuggest result.
Declaration
protected AbstractAutoSuggestResult(AbstractEditingContext context)
Parameters
Type | Name | Description |
---|---|---|
AbstractEditingContext | context | The context of the AutoSuggest. |
Properties
Context
Gets the context of the current result
Declaration
public AbstractEditingContext Context { get; }
Property Value
Type | Description |
---|---|
AbstractEditingContext |
Icon
Gets or sets the icon for this auto suggestion provider result. Can be null.
Declaration
public Icon Icon { get; set; }
Property Value
Type | Description |
---|---|
Icon |
Priority
Determines the position of the suggestion data in the intellisense list Some standards used: 0.00 - highest priority - do not use unless the data must be top of the list 5.00 - very high priority 10.00 - high priority. This is the cut off for "first list", any lower priority values will be considered available for the second list 30.00 - medium (default value for the integration api) 50.00 - low
Declaration
public double Priority { get; set; }
Property Value
Type | Description |
---|---|
double |