HtmlTextWriter.TagLeftChar 字段

定义

表示标记标签的左尖括号 (<)。

public: char TagLeftChar;
public const char TagLeftChar;
val mutable TagLeftChar : char
Public Const TagLeftChar As Char 

字段值

示例

下面的代码示例使用元素名称呈现元素的开始标记的第一 <table> 个字符。 代码示例将 Write 方法与 TagLeftChar 字段用作参数。

此代码示例呈现以下标记:

<table

// Create the opening tag of a table element
// with styles by using the HtmlTextWriter class.
writer.Write(HtmlTextWriter.TagLeftChar);
writer.Write("table");
' Create the opening tag of a table element
' with styles by using the HtmlTextWriter class. 
writer.Write(HtmlTextWriter.TagLeftChar)
writer.Write("table")

注解

TagLeftChar编写标记标记时, 、 WriteBeginTagWriteFullBeginTagWriteEndTag 方法会使用 RenderBeginTag字段。

适用于

另请参阅