ListBox.HorizontalExtent プロパティ

定義

ListBox の水平スクロール バーでスクロールできる幅を取得または設定します。

public:
 property int HorizontalExtent { int get(); void set(int value); };
public int HorizontalExtent { get; set; }
member this.HorizontalExtent : int with get, set
Public Property HorizontalExtent As Integer

プロパティ値

水平スクロール バーでコントロールをスクロールできる幅 (ピクセル単位)。 既定値は 0 です。

次のコード例では、 プロパティと HorizontalExtent プロパティを使用HorizontalScrollbarして、コントロール内のすべての項目テキストを表示する水平スクロール バーを表示する方法をListBox示します。 この例では、 プロパティを IntegralHeight 使用して、コントロールのサイズが原因で項目が部分的に表示されないようにします ListBox 。 この例では、 という名前listBox1ListBoxコントロールがフォームに追加されている必要があります。

private:
   void DisplayHScroll()
   {
      // Make sure no items are displayed partially.
      listBox1->IntegralHeight = true;

      // Add items that are wide to the ListBox.
      for ( int x = 0; x < 10; x++ )
      {
         listBox1->Items->Add( String::Format( "Item {0} is a very large value that requires scroll bars", x ) );

      }

      // Display a horizontal scroll bar.
      listBox1->HorizontalScrollbar = true;

      // Create a Graphics object to use when determining the size of the largest item in the ListBox.
      Graphics^ g = listBox1->CreateGraphics();

      // Determine the size for HorizontalExtent using the MeasureString method using the last item in the list.
      int hzSize = (int)g->MeasureString( dynamic_cast<String^>(listBox1->Items[ listBox1->Items->Count - 1 ]), listBox1->Font ).Width;

      // Set the HorizontalExtent property.
      listBox1->HorizontalExtent = hzSize;
   }
private void DisplayHScroll()
{
   // Make sure no items are displayed partially.
   listBox1.IntegralHeight = true;

   // Add items that are wide to the ListBox.
   for (int x = 0; x < 10; x++)
   {
      listBox1.Items.Add("Item  " + x.ToString() + " is a very large value that requires scroll bars");
   }

   // Display a horizontal scroll bar.
   listBox1.HorizontalScrollbar = true;

   // Create a Graphics object to use when determining the size of the largest item in the ListBox.
   Graphics g = listBox1.CreateGraphics();

   // Determine the size for HorizontalExtent using the MeasureString method using the last item in the list.
   int hzSize = (int) g.MeasureString(listBox1.Items[listBox1.Items.Count -1].ToString(),listBox1.Font).Width;
   // Set the HorizontalExtent property.
   listBox1.HorizontalExtent = hzSize;
}
Private Sub DisplayHScroll()
     ' Make sure no items are displayed partially.
   listBox1.IntegralHeight = True
   Dim x As Integer

   ' Add items that are wide to the ListBox.
   For x = 0 To 10
      listBox1.Items.Add("Item  " + x.ToString() + " is a very large value that requires scroll bars")
   Next x

   ' Display a horizontal scroll bar.
   listBox1.HorizontalScrollbar = True

   ' Create a Graphics object to use when determining the size of the largest item in the ListBox.
   Dim g As System.Drawing.Graphics = listBox1.CreateGraphics()


   ' Determine the size for HorizontalExtent using the MeasureString method using the last item in the list.
   Dim hzSize As Integer = g.MeasureString(listBox1.Items(listBox1.Items.Count - 1).ToString(), listBox1.Font).Width
   ' Set the HorizontalExtent property.
   listBox1.HorizontalExtent = hzSize
End Sub

注釈

このプロパティは、 プロパティが に設定されている場合 HorizontalScrollbar にのみ有用な値を報告します true。 の幅がこのプロパティの ListBox 値より小さい場合、水平スクロール バーは の項目を水平方向にスクロールします ListBox。 の幅がこの値以上の ListBox 場合、水平スクロール バーは非表示になります。 このプロパティの値は、 によって ListBox動的に更新されません。 このプロパティは、 の項目が所有者描画される場合に ListBox 便利です。 たとえば、 の ListBox 所有者が描画した項目の幅が 200 ピクセルで、 が ListBox 60 ピクセル幅の場合、 HorizontalExtent アイテムの右端をコントロールの表示領域にスクロールするには、 プロパティを 200 に設定する必要があります。

適用対象

こちらもご覧ください