In This Article

ICompletionItem Interface

Provides the base requirements for an IntelliPrompt completion item.

public interface ICompletionItem

Properties

AutoCompletePostText

Gets the text that is inserted into the document after the caret when auto-complete is executed.

string AutoCompletePostText { get; }

Property Value

string:

The text that is inserted into the document after the caret when auto-complete is executed.

See Also

AutoCompletePreText

Gets the text that is inserted into the document before the caret when auto-complete is executed.

string AutoCompletePreText { get; }

Property Value

string:

The text that is inserted into the document before the caret when auto-complete is executed.

See Also

DescriptionProvider

Gets an IContentProvider that can provide content for a popup displaying a verbose description of the item.

IContentProvider DescriptionProvider { get; }

Property Value

IContentProvider:

An IContentProvider that can provide content for a popup displaying a verbose description of the item.

See Also

ImageSourceProvider

Gets an IImageSourceProvider that can provide an ImageSource for display within a list.

IImageSourceProvider ImageSourceProvider { get; }

Property Value

IImageSourceProvider:

An IImageSourceProvider that can provide an ImageSource for display within a list.

See Also

InlineDescription

Gets an optional inline description that is displayed next to the item's Text within a list.

string InlineDescription { get; }

Property Value

string:

An optional inline description that is displayed next to the item's Text within a list.

See Also

Tag

Gets or sets the object that contains user-defined data about the object.

object Tag { get; set; }

Property Value

object:

An object that contains user-defined data about the object. The default is null.

Remarks

Any type derived from the object class can be assigned to this property.

See Also

Text

Gets the text for the item that is displayed within a list.

string Text { get; }

Property Value

string:

The text for the item that is displayed within a list.

See Also

See Also