'Declaration Public Sub Insert( _ ByVal index As Integer, _ ByVal value As FormDefinition _ )
'Usage Dim instance As FormDefinitionCollection Dim index As Integer Dim value As FormDefinition instance.Insert(index, value)
public void Insert( int index, FormDefinition value )
public: void Insert( int index, FormDefinition* value )
public: void Insert( int index, FormDefinition^ value )
Parameters
- index
- The zero-based index in the collection at which point the new FormDefinition should be placed. If the value of this parameter is equal to the number of elements in the collection, the object will be appended to the end of the collection.
- value
- The FormDefinition to insert into the collection.