void setHeightButton_Click(object sender, EventArgs e)
{
Template template = Template.Default;
Section section = template.Row;
// When change section height, the cell's height do not change together.
// Yow can add more cells, or adjust some cell's size to fit new template size.
section.Height = 50;
// Reload template.
this.gcMultiRow1.Template = template;
}
Private Sub setHeightButton_Click(ByVal sender As Object, ByVal e As EventArgs) Handles setHeightButton.Click
Dim template1 As Template = Template.Default
Dim section As Section = template1.Row
' When change section height, the cell's height do not change together.
' Yow can add more cells, or adjust some cell's size to fit new template size.
section.Height = 50
' Reload template.
Me.gcMultiRow1.Template = template1
End Sub