TextBoxBase.AppendText(String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Ajoute du texte au texte en cours dans une zone de texte.
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ètres
- text
- String
Texte à ajouter au contenu en cours de la zone de texte.
Exemples
L’exemple de code suivant montre comment utiliser la AppendText méthode et la TextLength propriété pour copier du texte de l’un vers l’autre TextBox . Cet exemple exige que deux TextBox contrôles nommés et textBox1
textBox2
, aient été ajoutés à un formulaire et que textBox1
du texte soit affecté à sa Text propriété.
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
Remarques
Vous pouvez utiliser cette méthode pour ajouter du texte au texte existant dans le contrôle au lieu d’utiliser l’opérateur de concaténation (+) pour concaténer du texte avec la Text propriété.