GrapeCity SPREAD for Windows Forms 11.0J
BurstShape コンストラクタ()


新しい爆発シェイプを作成します。
構文
'Declaration
 
Public Function New()
'使用法
 
Dim instance As New BurstShape()
public BurstShape()
次のサンプルコードは、爆発シェイプを作成します。
FarPoint.Win.Spread.DrawingSpace.BurstShape burst = new FarPoint.Win.Spread.DrawingSpace.BurstShape();
burst.Parent = fpSpread1;
burst.BackColor = Color.Red;
burst.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth;
burst.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical;
burst.Anchor = 20;
burst.SetBounds(15, 15, 50, 50);
fpSpread1.ActiveSheet.AddShape(burst);
Dim burst As New FarPoint.Win.Spread.DrawingSpace.BurstShape
burst.Parent = FpSpread1
burst.BackColor = Color.Red
burst.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth
burst.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical
burst.Anchor = 20
burst.SetBounds(15, 15, 50, 50)
FpSpread1.ActiveSheet.AddShape(burst)
参照

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

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.