Manager.GetAdapterMonitor(Int32) Method (Microsoft.DirectX.Direct3D)

Returns the handle of the monitor associated with the Microsoft Direct3D object.

Definition

Visual Basic Public Shared Function GetAdapterMonitor( _
    ByVal adapter As Integer _
) As IntPtrLeave Site
C# public static IntPtrLeave Site GetAdapterMonitor(
    int adapter
);
C++ public:
static IntPtrLeave Site GetAdapterMonitor(
    int adapter
);
JScript public static function GetAdapterMonitor(
    adapter : int
) : IntPtrLeave Site;

Parameters

adapter System.Int32
Ordinal number that denotes the display adapter. AdapterListCollection.Default is always the primary display adapter.

Return Value

System.IntPtr
Handle of the monitor associated with the Direct3D object.

Remarks

The following C# code fragment illustrates how to obtain a handle to the monitor associated with a given device.

              [C#]
              IntPtr hMonitor;
AdapterInformation ai = Manager.Adapters.Default;

hMonitor = Manager.GetAdapterMonitor(ai.Adapter);