Class EmfExtEscape
Namespace: Aspose.Imaging.FileFormats.Emf.Emf.Records
Assembly: Aspose.Imaging.dll (25.7.0)
The EMR_EXTESCAPE record passes arbitrary information to a printer driver. The intent is that theinformation will not result in drawing being done.
public sealed class EmfExtEscape : EmfEscapeRecordType
{
public const int TypeCode = 0x15;
public short wLength;
public short nID;
}
Inheritance
object ← MetaObject ← EmfRecord ← EmfEscapeRecordType ← EmfExtEscape
Inherited Members
EmfEscapeRecordType.IEscape , EmfRecord.Type , EmfRecord.Size , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
EmfExtEscape(EmfRecord)
Initializes a new instance of the Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfExtEscape class.
public EmfExtEscape(EmfRecord source)
{
}
Parameters
source
EmfRecord
The source.
Properties
CjIn
Gets or sets a 32-bit unsigned integer specifying the number of bytes to pass to the printer driver.
public int CjIn
{
get;
set;
}
Property Value
Data
Gets or sets the data to pass to the printer driver. There MUST be cjIn bytes available.
public byte[] Data
{
get;
set;
}
Property Value
byte []