- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, I have gone through the posts about this topic but can't seem to find a solution to my issue. I am using the DrawingPrintManager object to print my drawings. Things appear to work fine but certain things don't work. For instance, one customer has a "Konica Minolta Bizhub C224e" printer with a Tray 1 A3, Tray 2 A4 & Manual feed. I have tried setting the PaperSize and PaperSource properties but no matter what I use, it keeps printing to A4.
Does anyone have any ideas or pointers for me here? Surely there must be a way to control this or is there just something silly I am missing?
For the PaperSize property, I use the enum as required, like in "PaperSizeEnum.kPaperSizeA3" for example.
For PaperSource I use the following which I found online:
// <summary>The upper bin of a printer (or the default bin, if the printer only has one bin).</summary>
Upper = 1,
/// <summary>The lower bin of a printer.</summary>
Lower = 2,
/// <summary>The middle bin of a printer.</summary>
Middle = 3,
/// <summary>Manually fed paper.</summary>
Manual = 4,
/// <summary>An envelope.</summary>
Envelope = 5,
/// <summary>Manually fed envelope.</summary>
ManualFeed = 6,
/// <summary>Automatically fed paper.</summary>
AutomaticFeed = 7,
/// <summary>A tractor feed.</summary>
TractorFeed = 8,
/// <summary>Small-format paper.</summary>
SmallFormat = 9,
/// <summary>Large-format paper.</summary>
LargeFormat = 10, // 0x0000000A
/// <summary>The printer's large-capacity bin.</summary>
LargeCapacity = 11, // 0x0000000B
/// <summary>A paper cassette.</summary>
Cassette = 14, // 0x0000000E
/// <summary>The printer's default input bin.</summary>
FormSource = 15, // 0x0000000F
/// <summary>A printer-specific paper source.</summary>
Custom = 257, // 0x00000101
I really appreciate any help you can provide.
Pieter
Solved! Go to Solution.