Enum EmfPointEnum
The Point enumeration is used to specify how a point is to be used in a drawing call.
[Flags]
public enum EmfPointEnum : byte
Fields
PT_BEZIERTO = 4
Specifies that this point is a control point or ending point for a Bezier curve.
PT_CLOSEFIGURE = 1
A 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_LINETO = 2
Specifies that a line is to be drawn from the current position to this point, which then becomes the new current position
PT_MOVETO = PT_LINETO | PT_BEZIERTO
Specifies that this point starts a disjoint figure. This point becomes the new current position.