TextBoxBase.AppendText(String) Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menambahkan teks ke teks kotak teks saat ini.
public:
void AppendText(System::String ^ text);
public void AppendText(string text);
public void AppendText(string? text);
member this.AppendText : string -> unit
Public Sub AppendText (text As String)
Parameter
- text
- String
Teks untuk ditambahkan ke konten kotak teks saat ini.
Contoh
Contoh kode berikut menunjukkan cara menggunakan AppendText metode dan TextLength properti untuk menyalin teks dari satu TextBox ke yang lain. Contoh ini mengharuskan dua TextBox kontrol bernama, textBox1 dan textBox2, telah ditambahkan ke formulir dan yang memiliki teks yang textBox1 ditetapkan ke propertinya Text .
void AppendTextBox1Text()
{
// Determine if text is selected in textBox1.
if ( textBox1->SelectionLength == 0 )
// No selection made, return.
return;
// Determine if the text being appended to textBox2 exceeds the MaxLength property.
if ( (textBox1->SelectedText->Length + textBox2->TextLength) > textBox2->MaxLength )
MessageBox::Show( "The text to paste in is larger than the maximum number of characters allowed" ); // Append the text from textBox1 into textBox2.
else
textBox2->AppendText( textBox1->SelectedText );
}
private void AppendTextBox1Text()
{
// Determine if text is selected in textBox1.
if(textBox1.SelectionLength == 0)
// No selection made, return.
return;
// Determine if the text being appended to textBox2 exceeds the MaxLength property.
if((textBox1.SelectedText.Length + textBox2.TextLength) > textBox2.MaxLength)
MessageBox.Show("The text to paste in is larger than the maximum number of characters allowed");
else
// Append the text from textBox1 into textBox2.
textBox2.AppendText(textBox1.SelectedText);
}
Private Sub AppendTextBox1Text()
' Determine if text is selected in textBox1.
If textBox1.SelectionLength = 0 Then
' No selection made, return.
Return
End If
' Determine if the text being appended to textBox2 exceeds the MaxLength property.
If textBox1.SelectedText.Length + textBox2.TextLength > textBox2.MaxLength Then
MessageBox.Show("The text to paste in is larger than the maximum number of characters allowed")
' Append the text from textBox1 into textBox2.
Else
textBox2.AppendText(textBox1.SelectedText)
End If
End Sub
Keterangan
Anda dapat menggunakan metode ini untuk menambahkan teks ke teks yang ada di kontrol alih-alih menggunakan operator perangkaian (+) untuk menggabungkan teks ke Text properti .