MESCIUS SPREAD for Windows Forms 15.0J
GradientSection コンストラクタ(Color)
使用例 

新しいカラーグラデーションセクションをデフォルトの設定で作成します。
構文
'宣言
 
Public Function New( _
   ByVal color As Color _
)
public GradientSection( 
   Color color
)

パラメータ

color
使用例
次のサンプルコードは、シート上のシェイプのグラデーションを設定します。
FarPoint.Win.Spread.DrawingSpace.GradientSection grd = new FarPoint.Win.Spread.DrawingSpace.GradientSection(Color.Empty);
grd.AlphaBlend = 255;
grd.Amount = 50;
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)
grd.AlphaBlend = 255
grd.Amount = 50
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 メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.