IVsLiteTreeEvents.OnDeleteItems(UInt32, UInt32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Counts items that have been deleted starting with iStart.
public:
int OnDeleteItems(System::UInt32 iStart, System::UInt32 Count);
public:
int OnDeleteItems(unsigned int iStart, unsigned int Count);
int OnDeleteItems(unsigned int iStart, unsigned int Count);
public int OnDeleteItems (uint iStart, uint Count);
abstract member OnDeleteItems : uint32 * uint32 -> int
Public Function OnDeleteItems (iStart As UInteger, Count As UInteger) As Integer
Parameters
- iStart
- UInt32
[In] An unsigned integer containing the start item of the deletion.
- Count
- UInt32
[In] An unsigned integer containing the Deletion Count.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsLiteTreeEvents::OnDeleteItems(
[in] ULONG iStart,
[in] ULONG Count
);