Spread Windows Forms 8.0 Product Documentation
HeartShape Constructor()
Example 


Creates a new heart shape.
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New HeartShape()
public HeartShape()
Example
This example creates a heart shape.
FarPoint.Win.Spread.DrawingSpace.HeartShape heart = new FarPoint.Win.Spread.DrawingSpace.HeartShape();
heart.Parent = fpSpread1;
heart.BackColor = Color.Red;
heart.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth;
heart.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical;
heart.Anchor = 20;
heart.SetBounds(15, 15, 50, 50);
fpSpread1.ActiveSheet.AddShape(heart);
Dim heart As New FarPoint.Win.Spread.DrawingSpace.HeartShape
heart.Parent = FpSpread1
heart.BackColor = Color.Red
heart.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth
heart.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical
heart.Anchor = 20
heart.SetBounds(15, 15, 50, 50)
FpSpread1.ActiveSheet.AddShape(heart)
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

Reference

HeartShape Class
HeartShape Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.