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


スライダーのトラックの画像を取得または設定します。
構文
'Declaration
 
Public Property TrackPicture As Picture
'使用法
 
Dim instance As SliderCellType
Dim value As Picture
 
instance.TrackPicture = value
 
value = instance.TrackPicture
public Picture TrackPicture {get; set;}

プロパティ値

トラックのピクチャを含むPictureオブジェクト
次のサンプルコードは、スライダ型セルを作成し、スライダトラックのピクチャを設定します。
FarPoint.Win.Spread.CellType.SliderCellType slider = new FarPoint.Win.Spread.CellType.SliderCellType();
slider.TrackPicture = 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.TrackPicture = 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.