Control.ClientRectangle プロパティ

定義

コントロールのクライアント領域を表す四角形を取得します。

public:
 property System::Drawing::Rectangle ClientRectangle { System::Drawing::Rectangle get(); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.Rectangle ClientRectangle { get; }
[<System.ComponentModel.Browsable(false)>]
member this.ClientRectangle : System.Drawing.Rectangle
Public ReadOnly Property ClientRectangle As Rectangle

プロパティ値

Rectangle

コントロールのクライアント領域を表す Rectangle

属性

次のコード例では、フォームの自動スクロールを有効にし、フォームのサイズを変更し、フォームのサイズ変更後もボタンを表示したままにします。 この例では、Form名前button2付きの名前がButton付いている必要があります。

private:
   void ResizeForm()
   {
      
      // Enable auto-scrolling for the form.
      this->AutoScroll = true;
      
      // Resize the form.
      Rectangle r = this->ClientRectangle;
      
      // Subtract 100 pixels from each side of the Rectangle.
      r.Inflate(  -100, -100 );
      this->Bounds = this->RectangleToScreen( r );
      
      // Make sure button2 is visible.
      this->ScrollControlIntoView( button2 );
   }
private void ResizeForm()
{
   // Enable auto-scrolling for the form.
   this.AutoScroll = true;

   // Resize the form.
   Rectangle r = this.ClientRectangle;
   // Subtract 100 pixels from each side of the Rectangle.
   r.Inflate(-100, -100);
   this.Bounds = this.RectangleToScreen(r);

   // Make sure button2 is visible.
   this.ScrollControlIntoView(button2);
}
Private Sub ResizeForm()
   ' Enable auto-scrolling for the form.
   Me.AutoScroll = True
   
   ' Resize the form.
   Dim r As Rectangle = Me.ClientRectangle
   ' Subtract 100 pixels from each side of the Rectangle.
   r.Inflate(- 100, - 100)
   Me.Bounds = Me.RectangleToScreen(r)
   
   ' Make sure button2 is visible.
   Me.ScrollControlIntoView(button2)
End Sub

注釈

コントロールのクライアント領域は、コントロールの境界から、スクロール バー、境界線、タイトル バー、メニューなどの非クライアント要素を差し引いた値です。

クライアント座標はコントロールのクライアント領域の左上隅を基準とするため、このプロパティによって返される四角形の左上隅の座標は (0,0) になります。 このプロパティを使用すると、コントロールのサーフェス上での描画などのタスクのコントロールのクライアント領域のサイズと座標を取得できます。

コントロールでの描画の詳細については、「Windows フォーム コントロールのレンダリング」を参照してください。

適用対象

こちらもご覧ください