HtmlTextWriter.TagLeftChar Campo

Definição

Representa o colchete angular de abertura (<) de uma marca de marcação.

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

Valor do campo

Exemplos

O exemplo de código a seguir renderiza o primeiro caractere da marca de abertura de um <table> elemento com o nome do elemento. O exemplo de código usa o Write método com o TagLeftChar campo como um parâmetro.

Este exemplo de código renderiza a seguinte marcação:

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

Comentários

O TagLeftChar campo é usado pelos RenderBeginTagmétodos , WriteBeginTag, WriteFullBeginTage WriteEndTag ao gravar marcas de marcação.

Aplica-se a

Confira também