PocketPlanner Programmer's Guide

LocationCollection.Item Property (Int32)

See Also

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

Namespace: MindFusion.Scheduling
Assembly: PocketPlanner

 Syntax

C#

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

Visual Basic

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

 Parameters

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

 Property Value

The Location object 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