PowerTools SPREAD for Windows Forms 8.0J
BackgroundStyle プロパティ (ButtonCellType)


背景のレンダリング方法を取得または設定します。
構文
'Declaration
 
Public Property BackgroundStyle As BackStyle
'使用法
 
Dim instance As ButtonCellType
Dim value As BackStyle
 
instance.BackgroundStyle = value
 
value = instance.BackgroundStyle
public BackStyle BackgroundStyle {get; set;}
解説
異なるボタン色を表示するには、UseVisualStyleBackColorプロパティをfalseに設定します。
次のサンプルコードは、ボタンの色を設定します。
FarPoint.Win.Spread.CellType.ButtonCellType btn = new
FarPoint.Win.Spread.CellType.ButtonCellType();
btn.BackgroundStyle = FarPoint.Win.BackStyle.Gradient;
btn.ButtonColor = Color.Yellow;
btn.ButtonColor2 = Color.Orange;
btn.GradientMode = Drawing2D.LinearGradientMode.ForwardDiagonal;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = btn;
Dim btn As New FarPoint.Win.Spread.CellType.ButtonCellType
btn.BackgroundStyle = FarPoint.Win.BackStyle.Gradient
btn.ButtonColor = Color.Yellow
btn.ButtonColor2 = Color.Orange
btn.GradientMode = Drawing2D.LinearGradientMode.ForwardDiagonal

FpSpread1.ActiveSheet.Cells(0, 0).CellType = btn
参照

ButtonCellType クラス
ButtonCellType メンバ

 

 


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