Imports GrapeCity.Win.MultiRow
Dim TextBoxCell1 As New TextBoxCell()
TextBoxCell1.Name = "TextBoxCell1"
Dim Template1 As Template = Template.CreateGridTemplate(New Cell() {TextBoxCell1})
Template1.AllowCellNameComparisonIgnoreCase = True
GcMultiRow1.Template = Template1
GcMultiRow1.RowCount = 3
GcMultiRow1.Rows(0).Cells("TEXTBOXCELL1").Value = "ABC"GcMultiRow1.Rows(0).Cells("TEXTBOXCELL1").Style.BackColor = Color.Yellow
GcMultiRow1.Rows(0).Cells("TEXTBOXCELL1").Style.ForeColor = Color.Red
using GrapeCity.Win.MultiRow;
TextBoxCell textBoxCell1 = new TextBoxCell();
textBoxCell1.Name = "textBoxCell1";
Template template1 = Template.CreateGridTemplate(new Cell[] { textBoxCell1 });
template1.AllowCellNameComparisonIgnoreCase = true;
gcMultiRow1.Template = template1;
gcMultiRow1.RowCount = 3;
gcMultiRow1.Rows[0].Cells["TEXTBOXCELL1"].Value = "ABC";
gcMultiRow1.Rows[0].Cells["TEXTBOXCELL1"].Style.BackColor = Color.Yellow;
gcMultiRow1.Rows[0].Cells["TEXTBOXCELL1"].Style.ForeColor = Color.Red;