VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging Namespace / CollectionChangeEventArgs<T> Class / CreateRemoveItemEventArgs(Int32,T) Method
Syntax Requirements SeeAlso
In This Topic
CreateRemoveItemEventArgs(Int32,T) Method (CollectionChangeEventArgs<T>)
In This Topic
Creates an instance of the CollectionChangeEventArgs<T> class for CollectionChangeActionType.RemoveItem action.
Syntax
'Declaration

Public Shared Function CreateRemoveItemEventArgs( _
ByVal index
Index at which the item was removed from the collection.
As System.Int32, _
ByVal item
Removed item.
As T _
) As CollectionChangeEventArgs(Of T)
public static CollectionChangeEventArgs<T> CreateRemoveItemEventArgs(
System.Int32 index,
T item
)

Parameters

index
Index at which the item was removed from the collection.
item
Removed item.

Return Value

An instance of the CollectionChangeEventArgs<T> class for CollectionChangeActionType.RemoveItem action.
Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also