how to increase the MinSize of GridViewCheckBoxColumn. I want to increase the size of GridViewCheckBoxColumn i.e. Print in the attached file
1 Answer, 1 is accepted
0
Svett
Telerik team
answered on 09 Mar 2010, 08:54 AM
Hi Harinder Dhamija,
You can set MinWidth property of the column and also set RowHeight for all rows in the grid. You can use the following code snippet:
this.radGridView.Columns["IsNew"].MinWidth = 100;
this.radGridView.GridElement.RowHeight = 100;
Let us know if you have further questions.
Best wishes,
Svett
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.