IVsUIShell.CenterDialogOnWindow Method

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

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

See Also

Reference

IVsUIShell Interface

IVsUIShell Members

Microsoft.VisualStudio.Shell.Interop Namespace