Skip to content

Item


Overview

The Item method finds and returns an Attachment object from the Attachments object collection.

Syntax

vba
Attachments.Item(Index)
Parameter Name Required/Optional Type Description
Index Required Variant The index number of the Attachment object, or the full path of the Attachment object

Return Value

Returns an Attachment object from the Attachments object collection with the specified index.

Example

Example code snippet demonstrating how to access an attachment using Item():

vba
Dim attachment As Attachment
Set attachment = Attachments.Item(1)