FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > CheckBoxCellType クラス : ThreeState プロパティ |
'Declaration Public Property ThreeState As Boolean
'使用法 Dim instance As CheckBoxCellType Dim value As Boolean instance.ThreeState = value value = instance.ThreeState
public bool ThreeState {get; set;}
チェックボックスには2値式(TrueとFalse)と3値式(True、False、Indeterminate)があります。
チェックボックスを3値式にする場合は、このプロパティの値をTrueに設定します。
FarPoint.Win.Spread.CellType.CheckBoxCellType ckbxcell = new FarPoint.Win.Spread.CellType.CheckBoxCellType(); ckbxcell.ThreeState = true; ckbxcell.TextTrue ="Checked"; ckbxcell.TextFalse ="Unchecked"; ckbxcell.TextIndeterminate = "Not Sure"; fpSpread1.Sheets[0].Cells[1,2].CellType = ckbxcell;
Dim ckbxcell As New FarPoint.Win.Spread.CellType.CheckBoxCellType() ckbxcell.ThreeState = True ckbxcell.TextTrue = "Checked" ckbxcell.TextFalse = "Unchecked" ckbxcell.TextIndeterminate = "Not Sure" FpSpread1.Sheets(0).Cells(1,2).CellType = ckbxcell