In This Article

CompletionMatchOptions Enum

Specifies options for how an IntelliPrompt completion matches items.

[Flags]
public enum CompletionMatchOptions

Fields

Name Description
IsCaseInsensitive

Matching will accept the first case insensitive match found instead of looking for a case sensitive match that may be lower in the list. Note that even if this option is not set, when no case sensitive match is found, the first case insensitive match is used anyhow.

None

The default options.

RequiresExact

A full match only occurs if the text being matched is the same as the matched item's text.

TargetsDisplayText

Matching should target the display text instead of the auto-complete pre-text.

UseAcronyms

Enable an additional acronym matching algorithm.

UseShorthand

Enable an additional shorthand matching algorithm.