EmfPolyBezier

EmfPolyBezier class

The EMR_POLYBEZIER record specifies one or more Bezier curves.

public sealed class EmfPolyBezier : EmfDrawingRecordType

Constructors

NameDescription
EmfPolyBezier()Initializes a new instance of the EmfPolyBezier class.
EmfPolyBezier(EmfRecord)Initializes a new instance of the EmfPolyBezier class.

Properties

NameDescription
APoints { get; set; }Gets or sets a Count length array of WMF PointL objects ([MS-WMF] section 2.2.2.15) that specifies the endpoints and control points of the Bezier curves, in logical units.
Bounds { get; set; }Gets or sets a 128-bit WMF RectL object ([MS-WMF] section 2.2.2.19) that specifies the bounding rectangle in device units.
Size { get; set; }Gets or sets the size of the record
Type { get; set; }Gets or sets the type.

Remarks

Cubic Bezier curves are defined using the endpoints and control points specified by the aPoints field. The first curve is drawn from the first point to the fourth point, using the second and third points as control points. Each subsequent curve in the sequence needs exactly three more points: the ending point of the previous curve is used as the starting point, the next two points in the sequence are control points, and the third is the ending point. The cubic Bezier curves SHOULD be drawn using the current pen

See Also