XhtmlMobileTextWriter.WriteBeginTag(String) Método
Definição
Grava qualquer espaçamento de tabulação e a marca de abertura do elemento de marcação especificado no fluxo de saída.Writes any tab spacing and the opening tag of the specified markup element to the output stream. Esta API está obsoleta.This API is obsolete. Para saber mais sobre como desenvolver aplicativos móveis ASP.NET, veja Mobile Apps & Sites with ASP.NET (Aplicativos móveis e sites com ASP.NET).For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public:
override void WriteBeginTag(System::String ^ tag);
public override void WriteBeginTag (string tag);
override this.WriteBeginTag : string -> unit
Public Overrides Sub WriteBeginTag (tag As String)
Parâmetros
- tag
- String
O elemento de marcação no qual gravar o fluxo de saída.The markup element to write to the output stream.
Comentários
Se houver uma interrupção pendente, SuppressNewLine for false , e a marca fornecida não for um elemento de bloco (como <p> ,, <div> <ol> ou <table> ), que quebra automaticamente antes e depois do elemento, o WritePendingBreak método será chamado antes de gravar a marca de início.If there is a pending break, SuppressNewLine is false, and the provided tag is not a block element (such as <p>, <div>, <ol>, or <table>), which automatically break before and after the element, the WritePendingBreak method is called before writing the beginning tag.
Esse método é usado principalmente por desenvolvedores de adaptadores de controle e página móveis personalizados.This method is used primarily by developers of custom mobile page and control adapters.