Articles in this section
Category / Section

How to change the height of a row in GridDataBoundGrid?

1 min read

In GridDataBoundGrid, you can set the height of the row by passing the row index in the RowHeight property or by using the QueryRowHeight Event.

By using RowHeight property

C#

//Apply Rowheights to the Row 2.
this.gridDataBoundGrid1.Model.RowHeights[2] = 70;

 

VB

'Apply Rowheights to the Row 2.
Me.gridDataBoundGrid1.Model.RowHeights(2) = 70

 

Using QueryRowheight

C#

void Model_QueryRowHeight(object sender, Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs e)
{
// Apply Rowheights to the Row 2.
if (e.Index==2)
{
e.Size = 70;
e.Handled = true;
}
}

 

VB

Private Sub Model_QueryRowHeight(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)
'Apply Rowheights to the Row 2.
If e.Index=2 Then
e.Size = 70
e.Handled = True
End If
End Sub

 

The following screenshot displays the grid with QueryRowHieght event.

Change height of the row

Figure 1: change the height of the row

Sample Links

CS: Changing the row height

VB: Changing the row height

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied