TextBoxBase.AcceptsTab 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
여러 줄을 입력할 수 있는 TextBox 컨트롤에서 Tab 키를 누를 때 탭 순서에 따라 다음 컨트롤로 포커스를 이동하는 대신 해당 컨트롤에 탭 문자를 입력할지 여부를 나타내는 값을 가져오거나 설정합니다.
public:
property bool AcceptsTab { bool get(); void set(bool value); };
public bool AcceptsTab { get; set; }
member this.AcceptsTab : bool with get, set
Public Property AcceptsTab As Boolean
속성 값
Tab 키를 사용하여 여러 줄을 입력할 수 있는 텍스트 상자에 탭을 입력할 수 있으면 true
이고 Tab 키를 누를 때 포커스가 이동하면 false
입니다. 기본값은 false
입니다.
예제
다음 코드 예제에서는 파생 클래스를 사용하여 TextBox세로 스크롤 막대가 있는 여러 줄 TextBox 컨트롤을 만듭니다. 또한 이 예제에서는 , AcceptsReturn및 WordWrap 속성을 사용하여 AcceptsTab여러 줄 텍스트 상자 컨트롤을 텍스트 문서를 만드는 데 유용합니다.
public:
void CreateMyMultilineTextBox()
{
// Create an instance of a TextBox control.
TextBox^ textBox1 = gcnew TextBox;
// Set the Multiline property to true.
textBox1->Multiline = true;
// Add vertical scroll bars to the TextBox control.
textBox1->ScrollBars = ScrollBars::Vertical;
// Allow the RETURN key in the TextBox control.
textBox1->AcceptsReturn = true;
// Allow the TAB key to be entered in the TextBox control.
textBox1->AcceptsTab = true;
// Set WordWrap to true to allow text to wrap to the next line.
textBox1->WordWrap = true;
// Set the default text of the control.
textBox1->Text = "Welcome!" + Environment::NewLine + "Second Line";
}
public void CreateMyMultilineTextBox()
{
// Create an instance of a TextBox control.
TextBox textBox1 = new TextBox();
// Set the Multiline property to true.
textBox1.Multiline = true;
// Add vertical scroll bars to the TextBox control.
textBox1.ScrollBars = ScrollBars.Vertical;
// Allow the RETURN key in the TextBox control.
textBox1.AcceptsReturn = true;
// Allow the TAB key to be entered in the TextBox control.
textBox1.AcceptsTab = true;
// Set WordWrap to true to allow text to wrap to the next line.
textBox1.WordWrap = true;
// Set the default text of the control.
textBox1.Text = "Welcome!" + Environment.NewLine + "Second Line";
}
Public Sub CreateMyMultilineTextBox()
' Create an instance of a TextBox control.
Dim textBox1 As New TextBox()
' Set the Multiline property to true.
textBox1.Multiline = True
' Add vertical scroll bars to the TextBox control.
textBox1.ScrollBars = ScrollBars.Vertical
' Allow the RETURN key in the TextBox control.
textBox1.AcceptsReturn = True
' Allow the TAB key to be entered in the TextBox control.
textBox1.AcceptsTab = True
' Set WordWrap to true to allow text to wrap to the next line.
textBox1.WordWrap = True
' Set the default text of the control.
textBox1.Text = "Welcome!" & Environment.NewLine & "Second Line"
End Sub
설명
Multiline 컨트롤에서 TAB 문자를 가져오는 것도 속성이어야 합니다true
.
속성이 AcceptsTab 설정된 true
경우 사용자는 Ctrl+Tab을 눌러 탭 순서의 다음 컨트롤로 포커스를 이동해야 합니다.