SPREAD for WPF 3.0J - GcSpreadGrid
Content プロパティ (ButtonCellType)
使用例 

GrapeCity.Windows.SpreadGrid 名前空間 > ButtonCellType クラス : Content プロパティ
ButtonCellType の内容を取得または設定します。
シンタックス
'宣言
 
Public Property Content As Object
public object Content {get; set;}

プロパティ値

セル型の内容を含むオブジェクト。既定値は null 参照 (Visual Basicでは Nothing) です。
使用例
次のサンプルは ButtonCellType にテキストを設定する方法を説明します。
<sg:GcSpreadGrid>
<sg:GcSpreadGrid.Columns>
<sg:Column>
<sg:Column.CellType>
<sg:ButtonCellType Content="Button"/>
</sg:Column.CellType>
</sg:Column>
</sg:GcSpreadGrid.Columns>
</sg:GcSpreadGrid>
ButtonCellType button = new ButtonCellType();
button.Content = "button";
gcSpreadGrid1.Columns[0].CellType = button;
Dim button As New ButtonCellType()
button.Content = "button"
gcSpreadGrid1.Columns(0).CellType = button
参照

ButtonCellType クラス
ButtonCellType メンバ