IVsLiteTreeEvents.OnInsertItems(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 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
);