PowerTools SPREAD for Windows Forms 8.0J
CheckBoxCellType コンストラクタ()


新しいチェックボックス型セルをデフォルトの設定で作成します。
構文
'Declaration
 
Public Function New()
'使用法
 
Dim instance As New CheckBoxCellType()
public CheckBoxCellType()
次のサンプルコードは、この型のセルを作成し、このセル型のプロパティを設定して、このセル型をセルに割り当てます。
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.