Version

Changing the Height of a Single Row

You can allow your users to change the height of a single row without affecting the rest of the rows in the band by using the RowSizing property of the Override object.

Enter the following code in the InitializeLayout event:

In Visual Basic:

Imports Infragistics.Win.UltraWinGrid
...
Private Sub UltraGrid1_InitializeLayout(ByVal sender As Object, _
  ByVal e As Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs) _
  Handles UltraGrid1.InitializeLayout
	e.Layout.Override.RowSizing = RowSizing.Free
End Sub

In C#:

using Infragistics.Win.UltraWinGrid;
...
private void ultraGrid1_InitializeLayout(object sender,
  Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
{
	e.Layout.Override.RowSizing = RowSizing.Free;
}