Bagikan melalui


TextBoxBase.AcceptsTab Properti

Definisi

Mendapatkan atau mengatur nilai yang menunjukkan apakah menekan tombol TAB dalam kontrol kotak teks multibaris mengetik karakter TAB di kontrol alih-alih memindahkan fokus ke kontrol berikutnya dalam urutan 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

Nilai Properti

true jika pengguna dapat memasukkan tab dalam kotak teks multibaris menggunakan tombol TAB; false jika menekan tombol TAB akan memindahkan fokus. Defaultnya adalah false.

Contoh

Contoh kode berikut menggunakan TextBox, kelas turunan, untuk membuat kontrol multibaris TextBox dengan bilah gulir vertikal. Contoh ini juga menggunakan AcceptsTabproperti , AcceptsReturn, dan WordWrap untuk membuat kontrol kotak teks multibaris berguna untuk membuat dokumen teks.

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

Keterangan

Properti Multiline juga harus true untuk mendapatkan karakter TAB dalam kontrol.

AcceptsTab Jika properti diatur ke true, pengguna harus menekan CTRL+TAB untuk memindahkan fokus ke kontrol berikutnya dalam urutan tab.

Berlaku untuk

Lihat juga