Imports GrapeCity.Win.MultiRow
Dim ButtonCell1 As New ButtonCell()
ButtonCell1.Name = "ButtonCell1"
ButtonCell1.Value = "Test"
GcMultiRow1.Template = Template.CreateGridTemplate(New Cell() { ButtonCell1 })
GcMultiRow1.RowCount = 10
using GrapeCity.Win.MultiRow;
ButtonCell buttonCell1 = new ButtonCell();
buttonCell1.Name = "buttonCell1";
buttonCell1.Value = "Test";
gcMultiRow1.Template = Template.CreateGridTemplate(new Cell[] { buttonCell1 });
gcMultiRow1.RowCount = 10;