Show / Hide Table of Contents

Class ItemCollectionChangedEventArgs

Represents the event arguments for item collection related events.

Inheritance
System.Object
System.EventArgs
ItemCollectionChangedEventArgs
Inherited Members
System.EventArgs.Empty
Namespace: Manina.Windows.Forms
Assembly: ImageListView.dll
Syntax
[Serializable]
[ComVisible(true)]
public class ItemCollectionChangedEventArgs : EventArgs

Constructors

| Improve this Doc View Source

ItemCollectionChangedEventArgs(CollectionChangeAction, ImageListViewItem)

Initializes a new instance of the ItemCollectionChangedEventArgs class.

Declaration
public ItemCollectionChangedEventArgs(CollectionChangeAction action, ImageListViewItem item)
Parameters
Type Name Description
System.ComponentModel.CollectionChangeAction action

The type of action causing the change.

ImageListViewItem item

The item that is the target of this event. This parameter will be null if the collection is cleared.

Properties

| Improve this Doc View Source

Action

Gets the type of action causing the change.

Declaration
public CollectionChangeAction Action { get; }
Property Value
Type Description
System.ComponentModel.CollectionChangeAction
| Improve this Doc View Source

Item

Gets the ImageListViewItem that is the target of the event.

Declaration
public ImageListViewItem Item { get; }
Property Value
Type Description
ImageListViewItem
Back to top Copyright © 2018 Özgür Özçıtak