Item Property

Description

Returns the folder path located in the specified position.

Property type

Read-only property

Syntax

Visual Basic
Public Property Item( _
   ByVal Position As Long _
) As String

Parameters

Position

The position of the folder path item you want to retrieve.  Position values begin with 1. To specify the last position in the list, enter -1.

Remarks

Item is the default property for the FoldersOptions object.  Therefore, you can also retrieve or set this value using the following syntax:

FoldersObject(Position) = NewPosition

or

MyPosition = FoldersObject(Position)

See Also