HtmlTextWriter.OutputTabs Método

Definición

Escribe una serie de cadenas de tabulación que representan el nivel de sangría de una línea de caracteres marcado.

protected:
 virtual void OutputTabs();
protected virtual void OutputTabs ();
abstract member OutputTabs : unit -> unit
override this.OutputTabs : unit -> unit
Protected Overridable Sub OutputTabs ()

Ejemplos

En el ejemplo de código siguiente se muestra cómo invalidar el OutputTabs método en una clase derivada de la HtmlTextWriter clase . La OutputTabs invalidación siempre usa la DefaultTabString constante para realizar la sangría.

// Override the OutputTabs method to set the tab to
// the number of spaces defined by the Indent variable.
virtual void OutputTabs() override
{
   
   // Output the DefaultTabString for the number
   // of times specified in the Indent property.
   for ( int i = 0; i < Indent; i++ )
      Write( DefaultTabString );
   __super::OutputTabs();
}
// Override the OutputTabs method to set the tab to
// the number of spaces defined by the Indent variable.      
protected override void OutputTabs()
{
    // Output the DefaultTabString for the number
    // of times specified in the Indent property.
    for (int i = 0; i < Indent; i++)
        Write(DefaultTabString);
    base.OutputTabs();
}
' Override the OutputTabs method to set the tab to
' the number of spaces defined by the Indent variable.   
Protected Overrides Sub OutputTabs()
    ' Output the DefaultTabString for the number
    ' of times specified in the Indent property.
    Dim i As Integer
    For i = 0 To Indent - 1
        Write(DefaultTabString)
    Next i
    MyBase.OutputTabs()
End Sub

Comentarios

El OutputTabs método usa la Indent propiedad para determinar cuántas cadenas de tabulación se van a escribir para obtener la sangría deseada.

La cadena de tabulación se especifica con el HtmlTextWriter constructor . Si no se especifica ninguna cadena de tabulación, se usa la DefaultTabString constante (\t).

Se aplica a

Consulte también