EmfPointEnum
Inheritance: java.lang.Object, com.aspose.ms.System.ValueType, com.aspose.ms.System.Enum
public final class EmfPointEnum extends System.Enum
The Point enumeration is used to specify how a point is to be used in a drawing call.
Fields
Field | Description |
---|---|
PT_CLOSEFIGURE | 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 | Specifies that a line is to be drawn from the current position to this point, which then becomes the new current position |
PT_BEZIERTO | Specifies that this point is a control point or ending point for a Bezier curve. |
PT_MOVETO | Specifies that this point starts a disjoint figure. |
PT_CLOSEFIGURE
public static final byte PT_CLOSEFIGURE
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
public static final byte PT_LINETO
Specifies that a line is to be drawn from the current position to this point, which then becomes the new current position
PT_BEZIERTO
public static final byte PT_BEZIERTO
Specifies that this point is a control point or ending point for a Bezier curve.
PT_MOVETO
public static final byte PT_MOVETO
Specifies that this point starts a disjoint figure. This point becomes the new current position.