#include “BlackIceDEVMODE.h”
DWORD GetFaxOutputMode (BlackIceDEVMODE* pDevMode);
Description
Returns the currently selected fax output mode/resolution. Fax output can be enabled using the EnableFaxOutput function.
Parameters
BlackIceDEVMODE* pDevMode - pointer to the BlackIceDEVMODE structure.
Return value
The selected fax output mode. It can be one of the values of the FaxOutputMode enum:
enum FaxOutputMode
{
FAXMODE_HIGH = 0, // 0 – 204x196 DPI
FAXMODE_HIGH_COMPATIBLE, // 1 – 204x196 DPI compatibility mode
FAXMODE_LOW, // 2 – 204x98 DPI
FAXMODE_LOW_COMPATIBLE, // 3 – 204x98 DPI compatibility mode
FAXMODE_HIGH_DOWNSCALE // 4 – Downscaled to 204x196 DPI from 600x600 DPI internal resolution
};
The compatibility mode options are for printing from applications that cannot handle fax resolutions properly.
Programming Notes
None
Code Example
None