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


セルの背景画像を取得または設定します。
構文
'Declaration
 
Public Property BackgroundImage As Picture
'使用法
 
Dim instance As CheckBoxCellType
Dim value As Picture
 
instance.BackgroundImage = value
 
value = instance.BackgroundImage
public Picture BackgroundImage {get; set;}

プロパティ値

画像を含むPictureオブジェクト
次のサンプルコードは、チェックボックス型セルの各状態に使用する画像を指定します。
FarPoint.Win.Spread.CellType.CheckBoxCellType ckbxcell = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
FarPoint.Win.Picture p = new FarPoint.Win.Picture(Image.FromFile("..\\images\\background.gif"));
ckbxcell.BackgroundImage = p;
ckbxcell.Caption = "CheckBox";
fpSpread1.ActiveSheet.Cells[0, 0, 1, 1].CellType = ckbxcell;
Dim ckbxcell As New FarPoint.Win.Spread.CellType.CheckBoxCellType()
Dim p As New FarPoint.Win.Picture(Image.FromFile("..\images\background.gif"))
ckbxcell.BackgroundImage = p
ckbxcell.Caption = "CheckBox"
FpSpread1.ActiveSheet.Cells(0, 0, 1, 1).CellType = ckbxcell
参照

CheckBoxCellType クラス
CheckBoxCellType メンバ

 

 


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