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

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

プロパティ値

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

CheckBoxCellType クラス
CheckBoxCellType メンバ