I have some information I want to put into a dataGridViewTex tBoxCell, but I don't want it all on one line. The information is being put in programmaticall y, so no use input for it. I've tried the simple:
dataGridViewTex tBoxCell infoCell = new dataGridViewTex tBoxCell();
infoCell.Value = "testline1" + Environment.New Line + "testline2" ;
with no effect, the text in the cell looks like this:
testline1testli ne2
Is there any way to achieve multiline text in a datagridviewtex tboxcell?
Thank you in advance.
dataGridViewTex tBoxCell infoCell = new dataGridViewTex tBoxCell();
infoCell.Value = "testline1" + Environment.New Line + "testline2" ;
with no effect, the text in the cell looks like this:
testline1testli ne2
Is there any way to achieve multiline text in a datagridviewtex tboxcell?
Thank you in advance.
Comment