EmbeddedMailObjectsCollection.Item[Int32] Property

Definition

Returns a specific element of a EmbeddedMailObjectsCollection, identified by its position.

public:
 property System::Web::UI::WebControls::EmbeddedMailObject ^ default[int] { System::Web::UI::WebControls::EmbeddedMailObject ^ get(int index); void set(int index, System::Web::UI::WebControls::EmbeddedMailObject ^ value); };
public System.Web.UI.WebControls.EmbeddedMailObject this[int index] { get; set; }
member this.Item(int) : System.Web.UI.WebControls.EmbeddedMailObject with get, set
Default Public Property Item(index As Integer) As EmbeddedMailObject

Parameters

index
Int32

The zero-based index of the element to get.

Property Value

Returns the EmbeddedMailObject at the location specified by the index parameter.

Exceptions

index is less than zero.

-or-

index is equal to or greater than the number of items in the collection.

Remarks

If index does not match an existing member of the collection, an error occurs.

The Item[] property is the default property for a collection. Therefore, the following lines of code are equivalent:

myObject = myCollection(index)  
myObject = myCollection.Item(index)  
myObject = myCollection[index];  
myObject = myCollection.Item[index];  

Applies to

See also