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

GrapeCity.Windows.SpreadGrid 名前空間 > ButtonCellType クラス : ContentTemplate プロパティ
ButtonCellType の内容の表示に使用されるデータテンプレートを取得または設定します。
シンタックス
'宣言
 
Public Property ContentTemplate As DataTemplate
public DataTemplate ContentTemplate {get; set;}

プロパティ値

データテンプレート。既定値は null 参照 (Visual Basicでは Nothing) です。
使用例
次のサンプルは ButtonCellType にデータテンプレートを使用して下線を設定する方法を説明します。
<DataTemplate x:Key ="UnderLineTemplate">
<TextBlock Text="{Binding}" TextDecorations="UnderLine"/>
</DataTemplate>
ButtonCellType button = new ButtonCellType();
button.Content = "Custom TextFormat";
button.ContentTemplate = this.Resources["UnderLineTemplate"] as DataTemplate;
gcSpreadGrid1[0,0].CellType = button;
Dim button As New ButtonCellType()
button.Content = "Custom TextFormat"
button.ContentTemplate = TryCast(Me.Resources("UnderLineTemplate"), DataTemplate)
gcSpreadGrid1(0, 0).CellType = button
参照

ButtonCellType クラス
ButtonCellType メンバ