PageSettings.CopyToHdevmode(IntPtr) Method

Definition

Copies the relevant information from the PageSettings to the specified DEVMODE structure.

public:
 void CopyToHdevmode(IntPtr hdevmode);
public void CopyToHdevmode (IntPtr hdevmode);
member this.CopyToHdevmode : nativeint -> unit
Public Sub CopyToHdevmode (hdevmode As IntPtr)

Parameters

hdevmode
IntPtr

nativeint

The handle to a Win32 DEVMODE structure.

Exceptions

The printer named in the PrinterName property does not exist or there is no default printer installed.

Remarks

Call the CopyToHdevmode method to copy relevant information to a DEVMODE structure from a PageSettings. This method is useful when you want to make unmanaged Win32 calls that require a DEVMODE.

To copy information from a DEVMODE structure to the PageSettings, call SetHdevmode.

Applies to

See also