ListBox.UseTabStops プロパティ
ListBox で文字列を描画するときにタブ文字を認識して展開するかどうかを示す値を取得または設定します。
Public Property UseTabStops As Boolean
[C#]
public bool UseTabStops {get; set;}
[C++]
public: __property bool get_UseTabStops();public: __property void set_UseTabStops(bool);
[JScript]
public function get UseTabStops() : Boolean;public function set UseTabStops(Boolean);
プロパティ値
コントロールでタブ文字を展開できる場合は true 。それ以外の場合は false 。既定値は true です。
使用例
[Visual Basic, C#, C++] 項目とタブ文字を表示する ListBox を作成する方法を次の例に示します。
Private Sub CreateTabStopList()
Dim listBox1 As New ListBox()
listBox1.SetBounds(20, 20, 100, 100)
Dim x As Integer
For x = 1 To 19
listBox1.Items.Add(("Item" + ControlChars.Tab + x.ToString()))
Next x
' Make the ListBox display tabs within each item.
listBox1.UseTabStops = True
Me.Controls.Add(listBox1)
End Sub
[C#]
private void CreateTabStopList()
{
ListBox listBox1 = new ListBox();
listBox1.SetBounds(20,20,100,100);
for(int x = 1; x < 20;x++)
{
listBox1.Items.Add("Item\t" + x.ToString());
}
// Make the ListBox display tabs within each item.
listBox1.UseTabStops = true;
this.Controls.Add(listBox1);
}
[C++]
private:
void CreateTabStopList() {
ListBox* listBox1 = new ListBox();
listBox1->SetBounds(20, 20, 100, 100);
for (int x = 1; x < 20;x++) {
listBox1->Items->Add(
String::Concat(S"Item\t", __box(x)));
}
// Make the ListBox display tabs within each item.
listBox1->UseTabStops = true;
this->Controls->Add(listBox1);
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ