GrapeCity SPREAD for WPF 2.0J
IsThreeState プロパティ

セル型が2つの状態と3つの状態のどちらをサポートするかを決定します。
構文
'Declaration
 
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 メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.