Using the .Height property has no effect so I suspect there is some other property to allow it?
The Height property is the right one. But by default, all of the row heights are synchonrized. To allow variable-height rows, you need to set the RowSizing property on the Override to Free.
After defining the Override to free i have defined the DefaultRowHeight = 10
but no change Why ? any other way to increase the height of all the row when it loads
10 is smaller than the default MinRowHeight
in order to be set you have to do the following:
ultraGrid1.DisplayLayout.Override.MinRowHeight = 1;
Yes setting the row height =40 is working making height =10 was not noticable thanks to both of you
especially mike
Hi,
The Height property is the right one.
Like Michael Saltzman said you should override RowSizing property to Free.
ultraGrid1.DisplayLayout.Override.RowSizing = Infragistics.Win.UltraWinGrid.RowSizing.Free;
And set the Height of a chosen row as :
ultraGrid1.DisplayLayout.Rows[0].Height = 40;
(affected only the size of the first row in your ultraGrid).
Regards
Danko.
no effect no changes
in the image u will see that i want to make the row size bigger.Can u help in this