This topic has not yet been rated - Rate this topic

PrinterProperties function

Applies to: desktop apps only

The PrinterProperties function displays a printer-properties property sheet for the specified printer.

Syntax

BOOL PrinterProperties(
  __in  HWND hWnd,
  __in  HANDLE hPrinter
);

Parameters

hWnd [in]

A handle to the parent window of the property sheet.

hPrinter [in]

A handle to a printer object. Use the OpenPrinter or AddPrinter function to retrieve a printer handle.

Return value

If the function succeeds, the return value is a nonzero value.

If the function fails, the return value is zero.

Remarks

Note  This is a blocking or synchronous function and might not return immediately. How quickly this function returns depends on run-time factors such as network status, print server configuration, and printer driver implementation—factors that are difficult to predict when writing an application. Calling this function from a thread that manages interaction with the user interface could make the application appear to be unresponsive.

Requirements

Minimum supported client

Windows 2000 Professional

Minimum supported server

Windows 2000 Server

Header

Winspool.h (include Windows.h)

Library

Winspool.lib

DLL

Plotui.dll

See also

Printing
Print Spooler API Functions
DocumentProperties
OpenPrinter

 

 

Send comments about this topic to Microsoft

Build date: 3/6/2012

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Display a printer's shell properties => SHInvokePrinterCommand()
To display a printer's shell property sheet, try

::SHInvokePrinterCommand(HWND, PRINTACTION_PROPERTIES, ...)

This will display the complete property sheet, including the General, Sharing, Ports, Advanced, (Color Management), Security and Device Settings pages.