Enum EmfPlusPathPointFlags

Enum EmfPlusPathPointFlags

Namespace: Aspose.Imaging.FileFormats.Emf.EmfPlus.Consts
Assembly: Aspose.Imaging.dll (25.7.0)

A 32-bit unsigned integer that specifies how to interpret the points and associated point types that are defined by this object.C (1 bit): If set, the PathPoints array specifies absolute locations in the coordinate space with 16-bit integer coordinates.If clear, the PathPoints array specifies absolute locations in the coordinate space with 32-bit floating-point coordinates.Note If the P flag (below) is set, this flag MAY be clear and MUST be ignored.R (1 bit): If set, the point types in the PathPointTypes array are specified by EmfPlusPathPointTypeRle objects (section 2.2.2.32),which use run-length encoding (RLE) compression, and/or EmfPlusPathPointType objects (section 2.2.2.31). See [MS-WMF] section 3.1.6 for more information on RLE compression.If clear, the point types in the PathPointTypes array are specified by EmfPlusPathPointType objects.P (1 bit): If set, each element in the PathPoints array specifies a location in the coordinate space that is relative to thelocation specified by the previous element in the array. In the case of the first element in PathPoints, a previous location at coordinates (0,0) is assumed.If clear, each element in the PathPoints array specifies an absolute location.

[Flags]
   public enum EmfPlusPathPointFlags
   {
   }

Fields

C = 16384

The c flag

P = 2048

The p flag

R = 4096

The r flag

 English