PowerTools SPREAD for Windows Forms 8.0J
GradientSection コンストラクタ(Color,Int32)


Color
グラデーションの量
パラメータを指定して、新しいカラーグラデーションセクションを作成します。
構文
'Declaration
 
Public Function New( _
   ByVal color As Color, _
   ByVal amount As Integer _
)
'使用法
 
Dim color As Color
Dim amount As Integer
 
Dim instance As New GradientSection(color, amount)
public GradientSection( 
   Color color,
   int amount
)

パラメータ

color
Color
amount
グラデーションの量
次のサンプルコードは、シート上のシェイプのグラデーションを設定します。
FarPoint.Win.Spread.DrawingSpace.GradientSection grd = new FarPoint.Win.Spread.DrawingSpace.GradientSection(Color.Empty, 50);
grd.AlphaBlend = 255;
grd.Color = Color.Red;

FarPoint.Win.Spread.DrawingSpace.RectangleShape rs = new FarPoint.Win.Spread.DrawingSpace.RectangleShape();
rs.Name = "GradientRect";

rs.Gradient.Style = FarPoint.Win.Spread.DrawingSpace.GradientStyle.RadialFromCenter;
rs.Gradient.Sections[0] = grd;

fpSpread1.ActiveSheet.AddShape(rs);
Dim grd As New FarPoint.Win.Spread.DrawingSpace.GradientSection(Color.Empty, 50)
grd.AlphaBlend = 255
grd.Color = Color.Red

Dim rs As New FarPoint.Win.Spread.DrawingSpace.RectangleShape
rs.Name = "GradientRect"

rs.Gradient.Style = FarPoint.Win.Spread.DrawingSpace.GradientStyle.RadialFromCenter
rs.Gradient.Sections(0) = grd

FpSpread1.ActiveSheet.AddShape(rs)
参照

GradientSection クラス
GradientSection メンバ
オーバーロード一覧

 

 


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