PocketPlanner Programmer's Guide

LocationCollection.Item Property (String)

See Also

Gets the location object identified by the specified string.

Namespace: MindFusion.Scheduling
Assembly: PocketPlanner

 Syntax

C#

public Location Item [
    string id
] { get; }

Visual Basic

Public ReadOnly Property Item ( _
    id As String _
) As Location

 Parameters

id
The Id of the Location to get.

 Property Value

The Location instance identified by the specified string.

 Remarks

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

 See Also