HtmlTextWriter.TagLeftChar Pole

Definice

Představuje levou lomenou závorku (<) značky značky.

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

Hodnota pole

Příklady

Následující příklad kódu vykreslí první znak otevírací značky <table> elementu s názvem elementu. Příklad kódu používá metodu Write s polem TagLeftChar jako parametrem.

Tento příklad kódu vykreslí následující kód:

<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")

Poznámky

Pole TagLeftChar se používá metodami RenderBeginTag, WriteBeginTag, WriteFullBeginTaga WriteEndTag při psaní značek značek.

Platí pro

Viz také