Share via


ActionableHierarchyEventsListener.OnItemAddedEventHandler Delegate

Represents the method that will handle the ItemAddedEvent event when it is raised.

Namespace:  Microsoft.VisualStudio.Data.Schema.Project.Project.Utilities
Assembly:  Microsoft.VisualStudio.Data.Schema.Project (in Microsoft.VisualStudio.Data.Schema.Project.dll)

Syntax

'Declaration
Public Delegate Function OnItemAddedEventHandler ( _
    itemIdParent As UInteger, _
    itemIdSiblingPrevious As UInteger, _
    itemIdAdded As UInteger _
) As Integer
'Usage
Dim instance As New OnItemAddedEventHandler(AddressOf HandlerMethod)
public delegate int OnItemAddedEventHandler(
    uint itemIdParent,
    uint itemIdSiblingPrevious,
    uint itemIdAdded
)
public delegate int OnItemAddedEventHandler(
    unsigned int itemIdParent, 
    unsigned int itemIdSiblingPrevious, 
    unsigned int itemIdAdded
)
JScript does not support delegates.
type OnItemAddedEventHandler = 
    delegate of 
        itemIdParent:uint32 * 
        itemIdSiblingPrevious:uint32 * 
        itemIdAdded:uint32 -> int

Parameters

Return Value

Type: System.Int32

See Also

Reference

Microsoft.VisualStudio.Data.Schema.Project.Project.Utilities Namespace