Search
ShapeTemplate.AddDecorationBezier Method
See Also
 



Adds a new Bezier curve as decoration of a shape.

 Syntax

VB6  Copy Code

Public Sub AddDecorationBezier( _
    ByVal x1 As Integer, _
    ByVal y1 As Integer, _
    ByVal x2 As Integer, _
    ByVal y2 As Integer, _
    ByVal x3 As Integer, _
    ByVal y3 As Integer, _
    ByVal x4 As Integer, _
    ByVal y4 As Integer _
)

C++  Copy Code

public:
void AddDecorationBezier (
    short x1,
    short y1,
    short x2,
    short y2,
    short x3,
    short y3,
    short x4,
    short y4
)

 Parameters

x1

A x-coordinate, defined as percent of shape full width.

y1
A y-coordinate, defined as percent of shape full height.
x2
A x-coordinate, defined as percent of shape full width.
y2
A y-coordinate, defined as percent of shape full height.
x3
A x-coordinate, defined as percent of shape full width.
y3
A y-coordinate, defined as percent of shape full height.
x4
A x-coordinate, defined as percent of shape full width.
y4
A y-coordinate, defined as percent of shape full height.

 Remarks

Decorations are not used for hit-testing, clipping and finding intersection with arrows.

 See Also