デザイナによる設定
- 行(Row)にボタン型セルを追加する。(例:buttonCell1)
- buttonCell1を選択し、プロパティウィンドウでbuttonCell1.Valueプロパティに任意の文字列を設定する。
コーディングによる設定
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;