EmbeddedMailObjectsCollection.Item[Int32] Property
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.
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];