IVsLiteTreeEvents.OnInsertItems(UInt32, UInt32) Method

Definition

Counts items that have been inserted after iAfter.

public:
 int OnInsertItems(System::UInt32 iAfter, System::UInt32 Count);
public:
 int OnInsertItems(unsigned int iAfter, unsigned int Count);
int OnInsertItems(unsigned int iAfter, unsigned int Count);
public int OnInsertItems (uint iAfter, uint Count);
abstract member OnInsertItems : uint32 * uint32 -> int
Public Function OnInsertItems (iAfter As UInteger, Count As UInteger) As Integer

Parameters

iAfter
UInt32

[In] An unsigned integer containing the item index after which the insertion(s) will take place.

Count
UInt32

[In] An unsigned integer containing the Insertion 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::OnInsertItems(  
   [in] ULONG iAfter,   
   [in] ULONG Count  
);  

Applies to