ScrollableControl.SetAutoScrollMargin(Int32, Int32) メソッド

定義

自動スクロールのマージンのサイズを設定します。

public:
 void SetAutoScrollMargin(int x, int y);
public void SetAutoScrollMargin (int x, int y);
member this.SetAutoScrollMargin : int * int -> unit
Public Sub SetAutoScrollMargin (x As Integer, y As Integer)

パラメーター

x
Int32

Width 値。

y
Int32

Height 値。

次のコード例では、 Panel派生クラスを使用します。 この例では、テキスト ボックスの場所を評価し、その親コンテナーであるパネル コントロールの外観と動作を変更します。 この例では、TextBoxButtonコントロールのPanelインスタンスを作成している必要があります。 パネルの端の少なくとも 1 つに重なるように、パネル上にボックスを配置します。 ボタンのクリックでこのサブ手順を呼び出して、パネルの動作と外観の違いを確認します。

void MySub()
{
   /* If the text box is outside the panel's bounds, 
          turn on auto-scrolling and set the margin. */
   if ( text1->Location.X > panel1->Location.X || text1->Location.Y > panel1->Location.Y )
   {
      panel1->AutoScroll = true;

      /* If the AutoScrollMargin is set to 
                less than (5,5), set it to 5,5. */
      if ( panel1->AutoScrollMargin.Width < 5 || panel1->AutoScrollMargin.Height < 5 )
      {
         panel1->SetAutoScrollMargin( 5, 5 );
      }
   }
}
private void MySub()
 {
    /* If the text box is outside the panel's bounds, 
       turn on auto-scrolling and set the margin. */
    if (text1.Location.X > panel1.Location.X ||
     text1.Location.Y > panel1.Location.Y)
    {
       panel1.AutoScroll = true;
       /* If the AutoScrollMargin is set to 
          less than (5,5), set it to 5,5. */
       if(panel1.AutoScrollMargin.Width < 5 ||
        panel1.AutoScrollMargin.Height < 5)
       {
          panel1.SetAutoScrollMargin(5, 5);
       }
    }
 }
Private Sub MySub()
    ' If the text box is outside the panel's bounds,
    ' turn on auto-scrolling and set the margin. 
    If (text1.Location.X > panel1.Location.X) Or _
        (text1.Location.Y > panel1.Location.Y) Then
        
        panel1.AutoScroll = True            
        ' If the AutoScrollMargin is set to
        ' less than (5,5), set it to 5,5. 
        If (panel1.AutoScrollMargin.Width < 5) Or _
            (panel1.AutoScrollMargin.Height < 5) Then
            
            panel1.SetAutoScrollMargin(5, 5)
        End If
    End If
End Sub

注釈

余白は、各コントロールの周囲の境界線の幅と高さを設定します。 この余白は、コンテナーでスクロール バーが必要なタイミングと、コントロールが選択されたときにスクロールする場所を決定するために使用されます。

注意

負の数を or y 値としてx渡すと、値は 0 にリセットされます。

適用対象

こちらもご覧ください