PocketPlanner Programmer's Guide

ResourceCollection.Item Property (Int32)

See Also

Gets or sets the Resource object located at the specified position within this collection.

Namespace: MindFusion.Scheduling
Assembly: PocketPlanner

 Syntax

C#

public Resource Item [
    int index
] { get; set; }

Visual Basic

Public Property Item ( _
    index As Integer _
) As Resource

 Parameters

index
The zero-based index of the Resource to set or retrieve.

 Property Value

The Resource instance at the specified index.

 Remarks

This indexer property enables using the C# [] operator or the VB.NET () operator to access the elements of the collection by their integer indices.

 See Also