방법: TextBox에서 줄 컬렉션 가져오기
업데이트: 2007년 11월
이 예제에서는 TextBox에서 텍스트 줄 컬렉션을 가져오는 방법을 보여 줍니다.
예제
다음 예제에서는 TextBox를 인수로 받아서 TextBox에서 텍스트 줄이 포함된 StringCollection을 반환하는 간단한 메서드를 보여 줍니다. LineCount 속성은 TextBox에 현재 있는 줄 수를 확인하는 데 사용되며 GetLineText 메서드는 각 줄을 추출하여 줄 컬렉션에 추가하는 데 사용됩니다.
StringCollection GetLinesCollectionFromTextBox(TextBox textBox)
{
StringCollection lines = new StringCollection();
// lineCount may be -1 if TextBox layout info is not up-to-date.
int lineCount = textBox.LineCount;
for (int line = 0; line < lineCount; line++)
// GetLineText takes a zero-based line index.
lines.Add(textBox.GetLineText(line));
return lines;
}