mrkalvin Posted December 13, 2006 Report Share Posted December 13, 2006 No C# eu tenho um TextBox com a propriedade Multiline como trueNeste TextBox eu coloco um texto com 4 linhas e gostaria de remover a 2ª linha.Estou tentando assim mas não funciona: private void button1_Click(object sender, EventArgs e) { textbox1.Lines[1].Remove(0); } Alguém sabe como fazer isso? Quote Link to comment Share on other sites More sharing options...
0 Graymalkin Posted December 16, 2006 Report Share Posted December 16, 2006 Você pode fazer isso assim: String[] linhas = textBox1.Lines; System.Collections.ArrayList lista = new System.Collections.ArrayList(linhas); lista.RemoveAt(1); linhas = (System.String[])lista.ToArray(Type.GetType("System.String")); textBox1.Lines = linhas;Certo? ;)Graymalkin Quote Link to comment Share on other sites More sharing options...
Question
mrkalvin
No C# eu tenho um TextBox com a propriedade Multiline como true
Neste TextBox eu coloco um texto com 4 linhas e gostaria de remover a 2ª linha.
Estou tentando assim mas não funciona:
Alguém sabe como fazer isso?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.