Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Returns a flag indicating if the given list item can be deleted.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function CanDelete ( _
index As UInteger, _
<OutAttribute> ByRef pfOK As Integer _
) As Integer
'Usage
Dim instance As IVsObjectList2
Dim index As UInteger
Dim pfOK As Integer
Dim returnValue As Integer
returnValue = instance.CanDelete(index, _
pfOK)
int CanDelete(
uint index,
out int pfOK
)
int CanDelete(
[InAttribute] unsigned int index,
[OutAttribute] int% pfOK
)
abstract CanDelete :
index:uint32 *
pfOK:int byref -> int
function CanDelete(
index : uint,
pfOK : int
) : int
Parameters
- index
Type: System.UInt32
[in] Specifies the index of the list item of interest.
- pfOK
Type: System.Int32%
[out] Pointer to a flag indicating whether the item can be deleted.
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:
[C++]
HRESULT IVsObjectList2::CanDelete([in] ULONG Index,
[out] BOOL *pfOK
);
Set pfOK to indicate whether the item Index can be deleted. Return true if it can, false if not.
.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.