FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > ButtonCellType クラス : BackgroundStyle プロパティ |
'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;}
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