Item Property
Description
Returns the recovery scenario item located in the specified position.
Property type
Read-only property
Syntax
Visual Basic
Public Property Item( _
   ByVal Position As Long _
) As RecoveryScenario
Parameters
Position
The position of the recovery scenario 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 Recovery object.  Therefore, you can also retrieve or set this value using the following syntax:

RecoveryObject(Position)= NewPosition

or

MyPosition= RecoveryObject(Position)

See Also