PowerTools SPREAD for Windows Forms 8.0J
TextFalse プロパティ (CheckBoxCellType)


false 状態のテキストを取得または設定します。
構文
'Declaration
 
Public Property TextFalse As String
'使用法
 
Dim instance As CheckBoxCellType
Dim value As String
 
instance.TextFalse = value
 
value = instance.TextFalse
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 メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.