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


未確定状態のテキストを取得または設定します。
構文
'Declaration
 
Public Property TextIndeterminate As String
'使用法
 
Dim instance As CheckBoxCellType
Dim value As String
 
instance.TextIndeterminate = value
 
value = instance.TextIndeterminate
public string TextIndeterminate {get; set;}

プロパティ値

Indeterminate 状態のテキストを含む String
解説
このテキストは、チェックボックスがグレーでIndeterminate状態を表すときに、チェックボックスの横に表示されます。このテキストを定義しない場合は、チェックボックスのCaptionテキストが表示されます。この3番目の状態(最初の2つはTrueとFalse)は、ThreeStateプロパティがTrueに設定されている場合のみ使用されます。Falseに設定されている場合は、他の2つの状態のみが使用されます。
次のサンプルコードは、セルの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.