PresentParameters.DeviceWindowHandle Property (Microsoft.DirectX.Direct3D)

Retrieves or sets the display window.

Definition

Visual Basic Public Property DeviceWindowHandle As IntPtrLeave Site
C# public IntPtrLeave Site DeviceWindowHandle { get; set; }
C++ public:
property IntPtrLeave Site DeviceWindowHandle {
        IntPtrLeave Site get();
        void set(IntPtrLeave Site value);
}
JScript public function get DeviceWindowHandle() : IntPtrLeave Site
public function set DeviceWindowHandle(IntPtrLeave Site);

Property Value

System.IntPtr
Pointer to an object that represents the display window.

This property is read/write. 

Remarks

For a full-screen application, the display window is the cover window. For applications that use multiple full-screen devices (such as a system with multiple monitors), exactly one device can use the focus window as the device window. All other devices must have unique device windows.

For a windowed-mode application, the display window is the default target window for Device.Present. If this property is null, the focus window is taken.

Note that the runtime does not attempt to reflect user changes in window size. The back buffer is not implicitly reset when this window is reset. However, the Device.Present method does automatically track window position changes.