In description column, the gridlines are displayed in 2 lines in grid's view row default size, I need it to be viewed in a single line.
Please check the attached image.
Thanks in Advance.
1 Answer, 1 is accepted
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 21 Sep 2018, 11:42 AM
Hello,
In order to avoid wrapping the text, ensure that the WrapText property is set to false for all columns in the grid:
foreach (GridViewColumn col in this.radGridView1.Columns)
{
col.WrapText = true;
}
I would recommend you to submit a support ticket from your account if you have any further questions as it is the best way to reach our support staff who will gladly assist you. You can learn more about the Telerik UI for WinForms suite via the product page and comes with a 30-day free trial giving you some time to explore the toolkit and consider using it for your current or upcoming WinForms development.
I hope this information helps.
Regards,
Dess
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.Learn More.