Imports GrapeCity.Win.MultiRow
Dim PentagonShapeRenderer1 = New PentagonShapeRenderer()
PentagonShapeRenderer1.ArrowLength = 30
PentagonShapeRenderer1.Direction = ShapeDirection.Top
PentagonShapeRenderer1.LineWidth = 3
Dim ShapeCell1 = New ShapeCell()
ShapeCell1.Name = "ShapeCell1"
ShapeCell1.Renderer = PentagonShapeRenderer1
GcMultiRow1.Template = Template.CreateGridTemplate(New Cell() {ShapeCell1})
GcMultiRow1.RowCount = 10
using GrapeCity.Win.MultiRow;
PentagonShapeRenderer pentagonShapeRenderer1 = new PentagonShapeRenderer();
pentagonShapeRenderer1.ArrowLength = 30;
pentagonShapeRenderer1.Direction = ShapeDirection.Top;
pentagonShapeRenderer1.LineWidth = 3;
ShapeCell shapeCell1 = new ShapeCell();
shapeCell1.Name = "shapeCell1";
shapeCell1.Renderer = pentagonShapeRenderer1;
gcMultiRow1.Template = Template.CreateGridTemplate(new Cell[] { shapeCell1 });
gcMultiRow1.RowCount = 10;