Keysight Pathwave 89600 VSA .NET API
RemoteCollectionChangedEventArgs Constructor
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > RemoteCollectionChangedEventArgs Class : RemoteCollectionChangedEventArgs Constructor


action
The action that caused the event.
newItems
The new items that are affected by the change.
newStartingIndex
The new index for the changed items.
oldItems
The old items that are affected by the change.
oldStartingIndex
The old index for the changed items.

Glossary Item Box

Initializes a new instance of the RemoteCollectionChangedEventArgs class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal action As NotifyCollectionChangedAction, _
   ByVal newItems As IList, _
   ByVal newStartingIndex As Integer, _
   ByVal oldItems As IList, _
   ByVal oldStartingIndex As Integer _
)
C# 
public RemoteCollectionChangedEventArgs( 
   NotifyCollectionChangedAction action,
   IList newItems,
   int newStartingIndex,
   IList oldItems,
   int oldStartingIndex
)
C++/CLI 
public:
RemoteCollectionChangedEventArgs( 
   NotifyCollectionChangedAction action,
   IList^ newItems,
   int newStartingIndex,
   IList^ oldItems,
   int oldStartingIndex
)

Parameters

action
The action that caused the event.
newItems
The new items that are affected by the change.
newStartingIndex
The new index for the changed items.
oldItems
The old items that are affected by the change.
oldStartingIndex
The old index for the changed items.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also