TextBoxBase.AppendText(String) Metódus
Definíció
Fontos
Egyes információk olyan, kiadás előtti termékekre vonatkoznak, amelyek a kiadásig még jelentősen módosulhatnak. A Microsoft nem vállal kifejezett vagy törvényi garanciát az itt megjelenő információért.
Szöveg hozzáfűzése egy szövegdoboz aktuális szövegéhez.
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)
Paraméterek
- text
- String
A szövegdoboz aktuális tartalmához hozzáfűzni kívánt szöveg.
Példák
Az alábbi példakód bemutatja, hogyan másolhat szöveget a AppendText metódus és a TextLength tulajdonság használatával egy TextBox másikba. Ehhez a példához két TextBox elnevezett textBox1 és textBox2egy űrlaphoz hozzáadott vezérlő szükséges, textBox1 amelyekhez a tulajdonságához Text szöveg van rendelve.
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
Megjegyzések
Ezzel a módszerrel szöveget adhat hozzá a vezérlőelem meglévő szövegéhez ahelyett, hogy az összefűzési operátort (+) használná a szöveg összefűzéséhez a Text tulajdonsághoz.