public class EmfPlusRecord extends MetaObject implements com.aspose.imaging_internal.fileformats.emf.IRecord
The Emf+ base record type.
Constructor and Description |
---|
EmfPlusRecord()
Initializes a new instance of the
EmfPlusRecord class. |
EmfPlusRecord(EmfPlusRecord source)
Initializes a new instance of the
EmfPlusRecord class. |
Modifier and Type | Method and Description |
---|---|
int |
getDataSize()
Gets a 32-bit unsigned integer that MUST define the 32-bit–aligned number of
bytes of data in the RecordData field that follows.
|
short |
getFlags()
Gets 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.
|
int |
getSize()
Gets 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.
|
short |
getType()
Gets a 16-bit unsigned integer that identifies the record type.
|
void |
setDataSize(int value)
Sets a 32-bit unsigned integer that MUST define the 32-bit–aligned number of
bytes of data in the RecordData field that follows.
|
void |
setFlags(short value)
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.
|
void |
setSize(int value)
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.
|
public EmfPlusRecord()
Initializes a new instance of the EmfPlusRecord
class.
public EmfPlusRecord(EmfPlusRecord source)
Initializes a new instance of the EmfPlusRecord
class.
source
- The source.public short getType()
Gets a 16-bit unsigned integer that identifies the record type.
public short getFlags()
Gets 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.
public void setFlags(short value)
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.
value
- The flags.public int getSize()
Gets 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.
getSize
in interface com.aspose.imaging_internal.fileformats.emf.IRecord
public void setSize(int value)
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.
setSize
in interface com.aspose.imaging_internal.fileformats.emf.IRecord
value
- The size.public int getDataSize()
Gets 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.
public void setDataSize(int value)
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.
value
- The size of the data.