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
)
function OnShellPropertyChange(
propid : int,
var : Object
) : int
Parameters
propid
Type: System.Int32[in] ID of the property that changed.
var
Type: System.Object[in] the new value of the property.
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);
Permissions
- 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.
See Also
Reference
IVsShellPropertyEvents Interface