Hello Support,
Please see a snippet of a grid that I'm developing using the metro style. However my column called Marketing Notes has some text that is split with CRLF and because the row height is quite large on the metro style it tries to fit both lines of text in. I'd ideally not want to adjust the row height and get the column to behave in a single line text format.
The properties to set up the grid column are:-
Is this possible?
Thanks
Terry
Please see a snippet of a grid that I'm developing using the metro style. However my column called Marketing Notes has some text that is split with CRLF and because the row height is quite large on the metro style it tries to fit both lines of text in. I'd ideally not want to adjust the row height and get the column to behave in a single line text format.
The properties to set up the grid column are:-
t_frmMain.RadGridView_TargetCos.Columns(
"MarketingNotes"
).HeaderText =
"Marketing Notes"
t_frmMain.RadGridView_TargetCos.Columns(
"MarketingNotes"
).HeaderTextAlignment = ContentAlignment.MiddleLeft
t_frmMain.RadGridView_TargetCos.Columns(
"MarketingNotes"
).TextAlignment = ContentAlignment.MiddleLeft
t_frmMain.RadGridView_TargetCos.Columns(
"MarketingNotes"
).Width = 200
Is this possible?
Thanks
Terry