デザイナによる設定
- 図形を設定するシェイプ型セルを選択する。(例:shapeCell1)
- プロパティウィンドウでRendererプロパティを選択し、ドロップダウンリストからPentagonを選択する。
- Rendererプロパティの左の「+」をクリックしてRendererクラスを展開する。
- Rendererクラスの次のプロパティを変更する。
- ArrowLengthプロパティに30を設定する。
- DirectionプロパティにTopを設定する。
- LineWidthプロパティに3を設定する
コーディングによる設定
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;