Centers the provided dialog box HWND on the parent HWND (if provided), or on the main IDE window.
Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
声明
Function CenterDialogOnWindow ( _
    hwndDialog As IntPtr, _
    hwndParent As IntPtr _
) As Integer
用法
Dim instance As IVsUIShell
Dim hwndDialog As IntPtr
Dim hwndParent As IntPtr
Dim returnValue As Integer
returnValue = instance.CenterDialogOnWindow(hwndDialog, _
    hwndParent)
int CenterDialogOnWindow(
    IntPtr hwndDialog,
    IntPtr hwndParent
)
int CenterDialogOnWindow(
    [InAttribute] IntPtr hwndDialog, 
    [InAttribute] IntPtr hwndParent
)
abstract CenterDialogOnWindow : 
        hwndDialog:IntPtr * 
        hwndParent:IntPtr -> int 
function CenterDialogOnWindow(
    hwndDialog : IntPtr, 
    hwndParent : IntPtr
) : int
Parameters
- hwndDialog
 Type: System.IntPtr
 [in] Specifies HWND dialog.
- hwndParent
 Type: System.IntPtr
 [in] Specifies HWND parent.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsUIShell::CenterDialogOnWindow(
   [in] HWND hwndDialog,
   [in] HWND hwndParent
);
If the IDE is in SDI mode, the dialog box HWND will be centered on the monitor workspace.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.