Table of Contents

Enum CodeCompletionType

Namespace
Alternet.Syntax
Assembly
Alternet.Syntax.v9.dll

Specifies types of code completion window used to complete language elements.

public enum CodeCompletionType

Fields

CodeSnippets = 5

Specifies that code completion window displayed with a list of templates with commonly used programming statements that can be inserted into the code.

CompleteBrace = 9

Specifies that matching brace to be inserted.

CompleteBraceAndParameterInfo = 10

Specifies that matching brace to be inserted and method parameter information displayed.

CompleteCodeActions = 14

Specifies that code completion window displayed with a list of available code fixes and code refactors.

CompleteCodeFixes = 12

Specifies that code completion window displayed with a list of available code fixes.

CompleteCodeRefactors = 13

Specifies that code completion window displayed with a list of available code refactors.

CompleteComment = 7

Specifies that xml comment template to be inserted.

CompleteInclude = 11

Specifies that include file to be inserted.

CompleteWord = 1

Specifies 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 = 8

Specifies that generic to be inserted.

ListMembers = 2

Specifies that code completion window displayed with a list of valid member variables or functions for the appropriate class, struct, union or namespace.

None = 0

Specifies that no flags are in effect.

ParameterInfo = 3

Specifies that code completion window displayed with information about the number, names, and types of parameters required by a function or attribute.

QuickInfo = 4

Specifies that code completion window displayed with information in a form of short description.

SpecialListMembers = 6

Specifies special cases for code completion window.

XmlCommentListMembers = 15

Specifies that xml comment members should be displayed.