IVsShellPropertyEvents.OnShellPropertyChange Method

Called when a shell property changes.

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

Syntax

‘선언
Function OnShellPropertyChange ( _
    propid As Integer, _
    var As Object _
) As Integer
‘사용 방법
Dim instance As IVsShellPropertyEvents
Dim propid As Integer
Dim var As Object
Dim returnValue As Integer

returnValue = instance.OnShellPropertyChange(propid, _
    var)
int OnShellPropertyChange(
    int propid,
    Object var
)
int OnShellPropertyChange(
    [InAttribute] int propid, 
    [InAttribute] Object^ var
)
abstract OnShellPropertyChange : 
        propid:int * 
        var:Object -> int 
function OnShellPropertyChange(
    propid : int, 
    var : Object
) : int

Parameters

  • propid
    Type: System.Int32
    [in] ID of the property that changed.

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 IVsShellPropertyEvents::OnShellPropertyChange(
   [in] VSSPROPID propid, 
   [in] VARIANT var);

.NET Framework Security

See Also

Reference

IVsShellPropertyEvents Interface

IVsShellPropertyEvents Members

Microsoft.VisualStudio.Shell.Interop Namespace