Chili.Opf3 Send comments on this topic.
Insert Method
See Also 
Chili.Opf3.DynamicProperties Namespace > DynamicPropertiesCollection Class : Insert Method




index
Index where the item is inserted.
item
Item that is inserted.
Inserts an element into the container at the specified index.

Syntax

Visual Basic (Declaration) 
Public Sub Insert( _
   ByVal index As Integer, _
   ByVal item As DynamicProperty _
) 
Visual Basic (Usage)Copy Code
Dim instance As DynamicPropertiesCollection
Dim index As Integer
Dim item As DynamicProperty
 
instance.Insert(index, item)
C# 
public void Insert( 
   int index,
   DynamicProperty item
)
Managed Extensions for C++ 
public: void Insert( 
   int index,
   DynamicProperty* item
) 
C++/CLI 
public:
void Insert( 
   int index,
   DynamicProperty^ item
) 

Parameters

index
Index where the item is inserted.
item
Item that is inserted.

Exceptions

ExceptionDescription
ArgumentOutOfRangeExceptionIndex is not a valid index in the DynamicPropertiesCollection.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also