TagRenderMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates the modes that are available for rendering HTML tags.
public enum TagRenderMode
type TagRenderMode =
Public Enum TagRenderMode
- Inheritance
-
TagRenderMode
Fields
Name | Value | Description |
---|---|---|
Normal | 0 | Represents the mode for rendering normal text. |
StartTag | 1 | Represents the mode for rendering an opening tag (for example, <tag>). |
EndTag | 2 | Represents the mode for rendering a closing tag (for example, </tag>). |
SelfClosing | 3 | Represents the mode for rendering a self-closing tag (for example, <tag />). |