GrapeCity MultiRow for Windows Forms 11.0J
文字列の表示

ボタン型セル(ButtonCell)に文字列を表示するには、ButtonCell.Valueプロパティ(Cell.Valueプロパティ)に文字列型の値を設定します。
デザイナによる設定
  1. 行(Row)にボタン型セルを追加する。(例:buttonCell1)
  2. 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;

   
関連トピック

 

 


© 2008 GrapeCity inc. All rights reserved.