HtmlTextWriter.DefaultTabString Campo

Definizione

Rappresenta un singolo carattere di tabulazione.

public: System::String ^ DefaultTabString;
public const string DefaultTabString;
val mutable DefaultTabString : string
Public Const DefaultTabString As String 

Valore del campo

Esempio

Nell'esempio di codice seguente viene illustrato come creare un costruttore che accetta un TextWriter oggetto come parametro e passa il DefaultTabString campo come argomento di parametro a una seconda versione del costruttore. Quando questo costruttore viene chiamato dal codice, il DefaultTabString campo definisce i criteri di rientro per l'istanza del writer di markup utilizzato da una pagina o da un adattatore.

// Create a markup class constructor that uses the
// DefaultTabString property to establish indent settings
// for the writer.
public SimpleHtmlTextWriter(TextWriter writer)
    :
    this(writer, DefaultTabString)
{
}
' Create a markup class constructor that uses the
' DefaultTabString property to establish indent settings
' for the writer.
Public Sub New(writer As TextWriter)
    me.New(writer, DefaultTabString)
End Sub

Commenti

La singola scheda è rappresentata dal carattere ASCII 9.

Si applica a

Vedi anche