SPREAD for WPF 3.0J - GcSpreadGrid
TrueContent プロパティ
使用例 

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

プロパティ値

セルの値が true のときのセル型の内容を含むオブジェクト。既定値は null 参照 (Visual Basicでは Nothing) です。
使用例
次のサンプルは CheckBoxCellType に異なるコンテンツを設定する方法を説明します。
CheckBoxCellType checkbox = new CheckBoxCellType();
checkbox.TrueContent = "Yes";
checkbox.FalseContent = "No";
checkbox.IndeterminateContent = "Unknown";
checkbox.IsThreeState = true;
gcSpreadGrid1.Columns[0].CellType = checkbox;
Dim checkbox As New CheckBoxCellType()
checkbox.TrueContent = "Yes"
checkbox.FalseContent = "No"
checkbox.IndeterminateContent = "Unknown"
checkbox.IsThreeState = True
gcSpreadGrid1.Columns(0).CellType = checkbox
参照

CheckBoxCellType クラス
CheckBoxCellType メンバ