다음을 통해 공유


TextBoxBase.ScrollToCaret 메서드

현재 컨트롤의 내용을 현재 캐럿 위치까지 스크롤합니다.

네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)

구문

‘선언
Public Sub ScrollToCaret
‘사용 방법
Dim instance As TextBoxBase

instance.ScrollToCaret
public void ScrollToCaret ()
public:
void ScrollToCaret ()
public void ScrollToCaret ()
public function ScrollToCaret ()

설명

이 메서드를 사용하면 캐럿이 컨트롤의 표시 가능 영역에 있을 때까지 컨트롤의 내용을 스크롤할 수 있습니다. 캐럿이 컨트롤의 표시 가능 영역 아래에 있을 경우 ScrollToCaret 메서드를 사용하면 컨트롤 맨 아래에서 캐럿이 보이는 위치까지 컨트롤의 내용이 스크롤됩니다. 캐럿이 컨트롤의 표시 가능 영역 위에 있을 경우 이 메서드를 사용하면 컨트롤 맨 위에서 캐럿이 보이는 위치까지 컨트롤의 내용이 스크롤됩니다. 여러 줄 텍스트 상자에서 이 메서드를 사용하면 현재 텍스트 진입점이 컨트롤의 표시 가능 영역 안에 있는지 확인할 수 있습니다.

참고

컨트롤에 포커스가 없거나 캐럿이 컨트롤의 표시 가능 영역에 있는 경우 이 메서드는 효과가 없습니다.

예제

다음 코드 예제에서는 Keys 열거형과 ScrollToCaret 메서드를 사용하는 방법을 보여 줍니다 이 예제를 실행하려면 TextBox1이라는 이름의 TextBox 컨트롤과 RichTextBox1이라는 이름의 RichTextBox 컨트롤이 들어 있는 폼에 다음 코드를 붙여넣습니다. 이 예제에서는 이벤트 처리 메서드가 KeyDown 이벤트와 연결되어 었어야 합니다.

'Handles the Enter key being pressed while TextBox1 has focus. 
Private Sub TextBox1_KeyDown(ByVal sender As Object, _
    ByVal e As KeyEventArgs) Handles TextBox1.KeyDown
    TextBox1.HideSelection = False
    If e.KeyCode = Keys.Enter Then
        e.Handled = True

        ' Copy the text from TextBox1 to RichTextBox1, add a CRLF after 
        ' the copied text, and keep the caret in view.
        RichTextBox1.SelectedText = TextBox1.Text + _
            Microsoft.VisualBasic.vbCrLf
        RichTextBox1.ScrollToCaret()
    End If
End Sub
//Handles the Enter key being pressed while TextBox1 has focus. 
private void TextBox1_KeyDown(object sender, KeyEventArgs e)
{
    TextBox1.HideSelection = false;
    if (e.KeyCode==Keys.Enter)
    {
        e.Handled = true;

        // Copy the text from TextBox1 to RichTextBox1, add a CRLF after 
        // the copied text, and keep the caret in view.
        RichTextBox1.SelectedText = TextBox1.Text + "\r\n";
        RichTextBox1.ScrollToCaret();
    }
}
private:
   //Handles the Enter key being pressed while TextBox1 has focus. 
   void TextBox1_KeyDown( Object^ /*sender*/, KeyEventArgs^ e )
   {
      TextBox1->HideSelection = false;
      if ( e->KeyCode == Keys::Enter )
      {
         e->Handled = true;

         // Copy the text from TextBox1 to RichTextBox1, add a CRLF after 
         // the copied text, and keep the caret in view.
         RichTextBox1->SelectedText = String::Concat( TextBox1->Text, "\r\n" );
         RichTextBox1->ScrollToCaret();
      }
   }
//Handles the Enter key being pressed while TextBox1 has focus. 
private void textBox1_KeyDown(Object sender, KeyEventArgs e)
{
    textBox1.set_HideSelection(false);
    if (e.get_KeyCode().Equals(Keys.Enter)) {
        e.set_Handled(true);
        // Copy the text from textBox1 to richTextBox1, add a CRLF after 
        // the copied text, and keep the caret in view.
        richTextBox1.set_SelectedText(textBox1.get_Text() + "\r\n");
        richTextBox1.ScrollToCaret();
    }
} //textBox1_KeyDown

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

TextBoxBase 클래스
TextBoxBase 멤버
System.Windows.Forms 네임스페이스