次の方法で共有


HtmlTextWriter.DefaultTabString フィールド

単一のタブ文字を表します。

Public Const DefaultTabString As String
[C#]
public const string DefaultTabString;
[C++]
public: const String* DefaultTabString;
[JScript]
public var DefaultTabString : String;

解説

単一のタブは ASCII 9 文字で表されます。

使用例

 
' Override the OutputTabs method to tab the number
' of spaces defined by the Indent variable.

Protected Overrides Sub OutputTabs()
   ' Output the 'DefaultTabString' for 'Indent' number of times.
   Dim i As Integer
   For i = 0 To Indent - 1
      Write(DefaultTabString)
   Next i
   MyBase.OutputTabs()
End Sub 'OutputTabs

[C#] 
// Override the OutputTabs method to tab the number
// of spaces defined by the Indent variable.

protected override void OutputTabs()
{
   // Output the 'DefaultTabString' for 'Indent' number of times.
   for(int i = 0; i < Indent; i++)
      Write(DefaultTabString);
   base.OutputTabs();
}

[C++] 
// Override the OutputTabs method to tab the number
// of spaces defined by the Indent variable.
 protected:
 
void OutputTabs() {
   // Output the 'DefaultTabString' for 'Indent' number of times.
   for (int i = 0; i < Indent; i++)
      Write(DefaultTabString);
   __super::OutputTabs();
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 2000, Windows XP Professional, Windows Server 2003 ファミリ

参照

HtmlTextWriter クラス | HtmlTextWriter メンバ | System.Web.UI 名前空間