Skip to content

Item


Overview

The Item method finds and returns an Account object from the Accounts object collection

Syntax

vba
Accounts.Item(Index)
Parameter Name Required/Optional Type Description
Index Required Long The index number of the Account object

Return Value

Returns an Account object from the Accounts object collection with the specified index.

Example

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

vba
Dim account As Account
Set account = Accounts.Item(1)