Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Called when a shell property changes.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function OnShellPropertyChange ( _
propid As Integer, _
var As Object _
) As Integer
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.
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);
.NET Framework Security
- 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.