Click or drag to resize

AnnotationFlags Enumeration

Annotation formatting flags.

Namespace:  Nova.CodeDOM
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
[FlagsAttribute]
public enum AnnotationFlags
Members
  Member nameValueDescription
None0No flags.
InfixMask3Inline status bit field mask - these bits are used to indicate different types of "infix" comments.
IsInfix11Indicates Infix location #1 - used for inline comments that appear in an otherwise-empty parameter or argument list, or the initialization section of a 'for' statement. Also used for EOL comments that appear after the Block start symbol ('{') or an operator, or compiler directives that occur between a TypeDecl header and any base type list or type constraints or between a ParameterDecl and its initializer.
IsInfix22Indicates Infix location #2 - used for inline comments that appear in an otherwise-empty conditional section of a 'for' statement, or compiler directives that occur between a ConstructorDecl header and any constructor initializer.
IsInfix33Indicates Infix location #3 - used for inline comments that appear in an otherwise-empty iteration section of a 'for' statement.
IsPostfix4Indicates Postfix location - used for regular comments and compiler directives that appear after an object instead of before it.
NoSpace8Used for EOL comments to indicate no space after the comment symbol.
NoStartTag16Used by DocComments objects to represent a missing start tag.
NoEndTag32Used by DocComments objects to represent a missing end tag.
See Also