EmbeddedMailObjectsCollection.Insert(Int32, EmbeddedMailObject) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Inserts an EmbeddedMailObject into the EmbeddedMailObjectsCollection object at the specified index position.
public:
void Insert(int index, System::Web::UI::WebControls::EmbeddedMailObject ^ value);
public void Insert (int index, System.Web.UI.WebControls.EmbeddedMailObject value);
member this.Insert : int * System.Web.UI.WebControls.EmbeddedMailObject -> unit
Public Sub Insert (index As Integer, value As EmbeddedMailObject)
Parameters
- index
- Int32
An integer value that indicates the index position at which to insert the EmbeddedMailObject in the collection.
- value
- EmbeddedMailObject
An EmbeddedMailObject object to insert into the EmbeddedMailObjectsCollection.
Exceptions
The specified index
is out of range of the collection.
The specified value
is null
.
Remarks
If index
is 0, value
is added to the beginning of the EmbeddedMailObjectsCollection. If index
equals the number of items in the EmbeddedMailObjectsCollection, value
is appended to the end.