EmfPlusDrawLines Class
Contents
[
Hide
]Summary: The EmfPlusDrawlLines record specifies drawing a series of connected lines
Module: aspose.imaging.fileformats.emf.emfplus.records
Full Name: aspose.imaging.fileformats.emf.emfplus.records.EmfPlusDrawLines
Inheritance: EmfPlusDrawingRecordType
Constructors
Name | Description |
---|---|
EmfPlusDrawLines(source) | Initializes a new instance of the EmfPlusDrawLines class. |
Properties
Name | Type | Access | Description |
---|---|---|---|
closed_shape | bool | r/w | Gets or sets a value indicating whether [closed shape]. |
compressed | bool | r/w | Gets or sets a value indicating whether this EmfPlusDrawClosedCurve is compressed. This bit indicates whether the PointData field specifies compressed data. If set, PointData specifies absolute locations in the coordinate space with 16-bit integer coordinates. If clear, PointData specifies absolute locations in the coordinate space with 32-bit floating-point coordinates Note If the Relative flag (below) is set, this flag is undefined and MUST be ignored |
data_size | int | r/w | Gets or sets a 32-bit unsigned integer that MUST define the 32-bit–aligned number of bytes of data in the RecordData field that follows. This number does not include the 12-byte record header. |
flags | short | r/w | Gets or sets a 16-bit unsigned integer that contains information for some records on how the operation is to be performed and on the structure of the record. |
object_id | byte | r/w | Gets or sets the object identifier. The index of an EmfPlusPen object (section 2.2.1.7) in the EMF+ Object Table to draw the lines. The value MUST be zero to 63, inclusive. |
point_data | PointF[] | r/w | Gets or sets the point data An array of Count points that specify the starting and ending points of the lines to be drawn. |
relative | bool | r/w | Gets or sets a value indicating whether this EmfPlusDrawClosedCurve is relative. This bit indicates whether the PointData field specifies relative or absolute locations. If set, each element in PointData specifies a location in the coordinate space that is relative to the location specified by the previous element in the array. In the case of the first element in PointData, a previous location at coordinates (0,0) is assumed. If clear, PointData specifies absolute locations according to the C flag. Note If this flag is set, the Compressed flag (above) is undefined and MUST be ignored |
size | int | r/w | Gets or sets a 32-bit unsigned integer that specifies the 32-bit-aligned number of bytes in the entire record, including the 12-byte record header and record-specific data. |
type | EmfPlusRecordType | r | Gets a 16-bit unsigned integer that identifies the record type. |
Constructor: EmfPlusDrawLines(source)
EmfPlusDrawLines(source)
Initializes a new instance of the EmfPlusDrawLines class.
Parameters:
Parameter | Type | Description |
---|---|---|
source | EmfPlusRecord | The source. |