Share via


IVsWindowFrameNotify3.OnDockableChange Method

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)

Syntax

'Declaration
Function OnDockableChange ( _
    fDockable As Integer, _
    x As Integer, _
    y As Integer, _
    w As Integer, _
    h As Integer _
) As Integer
int OnDockableChange(
    int fDockable,
    int x,
    int y,
    int w,
    int h
)
int OnDockableChange(
    [InAttribute] int fDockable, 
    [InAttribute] int x, 
    [InAttribute] int y, 
    [InAttribute] int w, 
    [InAttribute] int h
)
abstract OnDockableChange : 
        fDockable:int * 
        x:int * 
        y:int * 
        w:int * 
        h:int -> int 
function OnDockableChange(
    fDockable : int, 
    x : int, 
    y : int, 
    w : int, 
    h : int
) : int

Parameters

  • fDockable
    Type: System.Int32
    [in] true if the window frame is being docked.

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 vsshell80.idl:

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

.NET Framework Security

See Also

Reference

IVsWindowFrameNotify3 Interface

Microsoft.VisualStudio.Shell.Interop Namespace