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

GrapeCity.Windows.SpreadGrid 名前空間 > CheckBoxCellType クラス : IsThreeState プロパティ
セル型が2つの状態と3つの状態のどちらをサポートするかを決定します。
シンタックス
'宣言
 
Public Property IsThreeState As Boolean
public bool IsThreeState {get; set;}

プロパティ値

セル型が3つの状態をサポートする場合は true。2つの状態をサポートする場合は false。既定値は false です。
使用例
次のサンプルは 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 メンバ