IVsWindowFrameNotify3::OnDockableChange Method (Int32, Int32, Int32, Int32, Int32)

 

Notifies the VSPackage that a window's docked state is being altered.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

int OnDockableChange(
	int fDockable,
	int x,
	int y,
	int w,
	int h
)

Parameters

fDockable
Type: System::Int32

[in] true if the window frame is being docked.

x
Type: System::Int32

[in] Horizontal position of undocked window.

y
Type: System::Int32

[in] Vertical position of undocked window.

w
Type: System::Int32

[in] Width of undocked window.

h
Type: System::Int32

[in] Height of undocked window.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell80.idl:

HRESULT IVsWindowFrameNotify3::OnDockableChange(
   [in] BOOL fDockable, 
   [in] int x, 
   [in] int y, 
   [in] int w, 
   [in] int h
);
Return to top
Show: