MESCIUS SPREAD for Windows Forms 15.0J
TextFalse プロパティ (CheckBoxCellType)
使用例 

false 状態のテキストを取得または設定します。
構文
'宣言
 
Public Property TextFalse As String
public string TextFalse {get; set;}

プロパティ値

False 状態のテキストを含む String
解説
このテキストは、チェックボックスがOFFでFalse状態を表すときに、チェックボックスの横に表示されます。このテキストを定義しない場合は、チェックボックスのCaptionテキストが表示されます。
使用例
次のサンプルコードは、セルの3値式チェックボックスのプロパティを設定し、各状態のテキストを指定します。
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
参照

CheckBoxCellType クラス
CheckBoxCellType メンバ

 

 


© MESCIUS inc. All rights reserved.