Skip to content

AutocompleteOptions

Interactive autocomplete options.

public sealed class AutocompleteOptions

Gets or sets a value indicating whether completion matching is case-sensitive.

public bool CaseSensitive { get; set; }

bool

Gets or sets a value indicating whether hints and menu entries are colorized.

public bool ColorizeHintAndMenu { get; set; }

bool

Gets or sets a value indicating whether the active input line is colorized by token kind.

public bool ColorizeInputLine { get; set; }

bool

Gets or sets a value indicating whether fuzzy scoring should be enabled.

public bool EnableFuzzyMatching { get; set; }

bool

Gets or sets a value indicating whether live one-line hints are rendered while typing.

public bool LiveHintEnabled { get; set; }

bool

Gets or sets the maximum number of alternatives shown in the live hint line.

public int LiveHintMaxAlternatives { get; set; }

int

Gets or sets max number of suggestions rendered in the popup/list.

public int MaxVisibleSuggestions { get; set; }

int

Gets or sets autocomplete mode.

public AutocompleteMode Mode { get; set; }

AutocompleteMode

Gets or sets autocomplete presentation style.

public AutocompletePresentation Presentation { get; set; }

AutocompletePresentation

Gets or sets a value indicating whether context alternatives are included in autocomplete.

public bool ShowContextAlternatives { get; set; }

bool

Gets or sets a value indicating whether invalid alternatives are shown when no selectable match exists.

public bool ShowInvalidAlternatives { get; set; }

bool