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


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

プロパティ値

画像を含むPictureオブジェクト

次のサンプルコードは、スライダバー型セルを作成し、背景画像を設定します。

FarPoint.Win.Spread.CellType.SliderCellType slider = new FarPoint.Win.Spread.CellType.SliderCellType();
slider.BackgroundImage = new FarPoint.Win.Picture(Image.FromFile("..\\images\\fplogo.jpg"));
fpSpread1.ActiveSheet.Cells[0, 0].CellType = slider;
Dim slider As New FarPoint.Win.Spread.CellType.SliderCellType()
slider.BackgroundImage = New FarPoint.Win.Picture(Image.FromFile("..\images\fplogo.jpg"))
FpSpread1.ActiveSheet.Cells(0, 0).CellType = slider
参照

SliderCellType クラス
SliderCellType メンバ

 

 


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