TextBoxBase.Lines Proprietà

Definizione

Ottiene o imposta le righe di testo in un controllo casella di testo.

public:
 property cli::array <System::String ^> ^ Lines { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
public string[] Lines { get; set; }
member this.Lines : string[] with get, set
Public Property Lines As String()

Valore della proprietà

String[]

Matrice di stringhe che contiene il testo in un controllo casella di testo.

Esempio

L'esempio di codice seguente usa TextBox, una classe derivata, per estrarre tutte le stringhe di testo da un controllo casella di testo multilinea e le visualizza usando il Debug.WriteLine metodo . In questo esempio è necessario che sia stato creato un TextBox controllo denominato e textBox1che sia stato riempito con righe di testo.

public:
   void ViewMyTextBoxContents()
   {
      #if defined(DEBUG)
      // Create a string array and store the contents of the Lines property.
      array<String^>^ tempArray = gcnew array<String^>( textBox1->Lines->Length );
      tempArray = textBox1->Lines;
      
      // Loop through the array and send the contents of the array to debug window.
      for ( int counter = 0; counter < tempArray->Length; counter++ )
      {
         System::Diagnostics::Debug::WriteLine( tempArray[ counter ] );
      }
      #endif
   }
public void ViewMyTextBoxContents()
 {
    // Create a string array and store the contents of the Lines property.
    string[] tempArray = textBox1.Lines;
 
    // Loop through the array and send the contents of the array to debug window.
    for(int counter=0; counter < tempArray.Length;counter++)
    {
       System.Diagnostics.Debug.WriteLine(tempArray[counter]);
    }
 }
Public Sub ViewMyTextBoxContents()
    Dim counter as Integer
    'Create a string array and store the contents of the Lines property.
    Dim tempArray() as String
    tempArray = textBox1.Lines
    
    'Loop through the array and send the contents of the array to debug window.
    For counter = 0 to tempArray.GetUpperBound(0)
        System.Diagnostics.Debug.WriteLine( tempArray(counter) )
    Next
 End Sub

Commenti

Ogni elemento della matrice diventa una riga di testo nel controllo casella di testo. Se la Multiline proprietà del controllo casella di testo è impostata su true e viene visualizzato un carattere nuova riga nel testo, il testo che segue il carattere nuova riga viene aggiunto a un nuovo elemento nella matrice e visualizzato in una riga separata.

Nota

Per impostazione predefinita, la raccolta di righe è una copia di sola lettura delle righe nell'oggetto TextBox. Per ottenere una raccolta scrivibile di righe, usare il codice simile al seguente: textBox1.Lines = new string[] { "abcd" };

Si applica a

Vedi anche