HtmlTextWriter.OutputTabs Метод

Определение

Записывает набор строк табуляции, представляющих уровень отступа для строки знаков разметки.

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

Примеры

В следующем примере кода показано, как переопределить OutputTabs метод в классе, производном от HtmlTextWriter класса . Переопределение OutputTabs всегда использует константу DefaultTabString для выполнения отступа.

// 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

Комментарии

Метод OutputTabs использует свойство , Indent чтобы определить, сколько строк табуляции необходимо записать для получения нужного отступа.

Строка табуляции указывается с помощью конструктора HtmlTextWriter . Если строка табуляции не указана DefaultTabString , используется константа (\t).

Применяется к

См. также раздел