PDFView4NET WinForms Edition
CollectionChanged Event (PDFPageCollection)




O2S.Components.PDFView4NET Namespace > PDFPageCollection Class : CollectionChanged Event
Gets or sets the event being fired when the collection has changed.
Syntax
'Declaration
 
Public Event CollectionChanged As EventHandler(Of PDFCollectionChangedEventArgs(Of PDFPage))
'Usage
 
Dim instance As PDFPageCollection
Dim handler As EventHandler(Of PDFCollectionChangedEventArgs(Of PDFPage))
 
AddHandler instance.CollectionChanged, handler
Event Data

The event handler receives an argument of type PDFCollectionChangedEventArgs<T> containing data related to this event. The following PDFCollectionChangedEventArgs<T> properties provide information specific to this event.

PropertyDescription
Gets the name of changed property when the change type is item update.  
Gets the type of change event.  
Gets the new item involved in the operation.  
Gets the old item involved in the operation.  
Gets the position of the affected item in the collection.  
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also