Enum CodeCompletionType
Specifies types of code completion window used to complete language elements.
public enum CodeCompletionType
Fields
CodeSnippets = 5Specifies that code completion window displayed with a list of templates with commonly used programming statements that can be inserted into the code.
CompleteBrace = 9Specifies that matching brace to be inserted.
CompleteBraceAndParameterInfo = 10Specifies that matching brace to be inserted and method parameter information displayed.
CompleteCodeActions = 14Specifies that code completion window displayed with a list of available code fixes and code refactors.
CompleteCodeFixes = 12Specifies that code completion window displayed with a list of available code fixes.
CompleteCodeRefactors = 13Specifies that code completion window displayed with a list of available code refactors.
CompleteComment = 7Specifies that xml comment template to be inserted.
CompleteInclude = 11Specifies that include file to be inserted.
CompleteWord = 1Specifies that code completion window displayed to complete the rest of a variable, command, or function name once you have entered enough characters to disambiguate the term.
GenericParameterInfo = 8Specifies that generic to be inserted.
ListMembers = 2Specifies that code completion window displayed with a list of valid member variables or functions for the appropriate class, struct, union or namespace.
None = 0Specifies that no flags are in effect.
ParameterInfo = 3Specifies that code completion window displayed with information about the number, names, and types of parameters required by a function or attribute.
QuickInfo = 4Specifies that code completion window displayed with information in a form of short description.
SpecialListMembers = 6Specifies special cases for code completion window.
XmlCommentListMembers = 15Specifies that xml comment members should be displayed.