IVsObjectList::CanDelete Method (UInt32, Int32)
Visual Studio 2015
Returns a flag indicating if the given list item can be deleted.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
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.
From vsshell.idl:
HRESULT IVsObjectList::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.
Show: