ItemInserting Event
See Also 
SourceCode.Workflow.Design.InfoPath.FormTemplate Namespace > DesignerCollection<T> Class : ItemInserting Event



Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Event ItemInserting As EventHandler(Of CollectionEventArgs)
Visual Basic (Usage) Copy Code
Dim instance As DesignerCollection(Of T)
Dim handler As EventHandler(Of CollectionEventArgs)
 
AddHandler instance.ItemInserting, handler
C#  
public event EventHandler<CollectionEventArgs> ItemInserting
C++/CLI  
public:
event EventHandler<CollectionEventArgs^>^ ItemInserting

Event Data

The event handler receives an argument of type CollectionEventArgs containing data related to this event. The following CollectionEventArgs properties provide information specific to this event.

Property Description
Index  
IsDisposed Gets a value indicating if the current object have been disposed yet.
Item  
Parent  

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