Enum SyntaxOptions
Defines possibilities of formatting Edit control's content.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Flags]
public enum SyntaxOptions
Fields
AutoComplete = 64Specifies that parser will complete statements if possible.
AutoCompleteBraces = 262144Specifies that parser provides information to autocomplete closing braces.
CodeCompletion = 4Specifies that information about code completion for language elements within the text is available.
CodeCompletionTabs = 512Specifies that code completion can be filtered based on priority.
CodeFixes = 65536Specifies that information about code fixes within the text is available.
CodeRefactors = 131072Specifies that information about code fixes within the text is available.
EvaluateConditionals = 2048Specifies that code parser should evaluate conditional defines.
FormatCase = 128Specifies that parser will change resword case.
FormatOnLineChange = 16384Specifies that text should be formatted when the current line changes.
FormatSpaces = 256Specifies that parser will format line spacing.
IndentationBasedFolding = 524288Specifies that parser provides outlining information based on text indentation.
None = 0Specifies that no flags are in effect.
NotifyOnParse = 4096Specifies async/await pattern for code parsing.
Outline = 1Specifies that information about outline sections within the text is available.
OutlineBlocks = 8192Specifies that information about statement blocks within the text is available.
QuickInfoTips = 32Specifies that text quick info tooltip should be displayed when mouse is moved over control.
ReparseOnLineChange = 16Specifies that text should be reparsed when the current line changes.
SmartIndent = 2Specifies that information about indent level of each line in the text is available.
StructureGuideLines = 32768Specifies that information about guide lines within the text is available.
SyntaxErrors = 8Specifies that information about syntax errors within the text is available.
WorkInThread = 1024Specifies that code completion and code outlining tasks to be performed in separate thread.