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


新しい楕円形シェイプを作成します。
構文
'Declaration
 
Public Function New()
'使用法
 
Dim instance As New EllipseShape()
public EllipseShape()
次のサンプルコードは、楕円形シェイプを作成します。
FarPoint.Win.Spread.DrawingSpace.EllipseShape es = new FarPoint.Win.Spread.DrawingSpace.EllipseShape();
es.Parent = fpSpread1;
es.BackColor = Color.Red;
es.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth;
es.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical;
es.Anchor = 40;
es.SetBounds(25, 25, 50, 50);

fpSpread1.ActiveSheet.AddShape(es);
Dim es As New FarPoint.Win.Spread.DrawingSpace.EllipseShape
es.Parent = FpSpread1
es.BackColor = Color.Red
s.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth
es.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical
es.Anchor = 40
es.SetBounds(25, 25, 50, 50)

FpSpread1.ActiveSheet.AddShape(es)
参照

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

 

 


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