EmfPointEnum

EmfPointEnum enumeration

The Point enumeration is used to specify how a point is to be used in a drawing call.

[Flags]
public enum EmfPointEnum : byte

Values

NameValueDescription
PT_CLOSEFIGURE1A PT_LINETO or PT_BEZIERTO type can be combined with this value by using the bitwise operator OR to indicate that the corresponding point is the last point in a figure and the figure is closed
PT_LINETO2Specifies that a line is to be drawn from the current position to this point, which then becomes the new current position
PT_BEZIERTO4Specifies that this point is a control point or ending point for a Bezier curve.
PT_MOVETO6Specifies that this point starts a disjoint figure. This point becomes the new current position.

See Also