Class EmfNamedEscape
The MR_NAMEDESCAPE record passes arbitrary information to a specified printer driver.
public sealed class EmfNamedEscape : EmfEscapeRecordType
- Inheritance
-
EmfNamedEscape
- Inherited Members
Constructors
EmfNamedEscape(EmfRecord)
Initializes a new instance of the EmfNamedEscape class.
public EmfNamedEscape(EmfRecord source)
Parameters
source
EmfRecordThe source.
Properties
CjDriver
Gets or sets A 32-bit unsigned integer that specifies the number of bytes in the DriverName field. This value MUST be an even number.
public int CjDriver { get; set; }
Property Value
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[]
DriverName
Gets or sets A string of 16-bit Unicode characters that specifies the name of the printer driver that will receive data. This value MUST be cjDriver bytes long, and it MUST be terminated with a null character.
public string DriverName { get; set; }