TextBoxBase.AppendText(String) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Připojí text k aktuálnímu textu textového pole.
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)
Parametry
- text
- String
Text, který se má připojit k aktuálnímu obsahu textového pole.
Příklady
Následující příklad kódu ukazuje, jak použít metodu AppendText TextLength a vlastnost kopírovat text z jednoho TextBox do druhého. Tento příklad vyžaduje, aby byly do formuláře přidány dva TextBox ovládací prvky s názvem textBox1
a textBox2``textBox1
byly přidány text přiřazené k jeho Text vlastnosti.
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
Poznámky
Tuto metodu můžete použít k přidání textu do existujícího textu v ovládacím prvku namísto použití operátoru zřetězení (+) ke zřetězení textu do Text vlastnosti.