PocketPlanner Programmer's Guide

ContactCollection.Item Property (Int32)

See Also

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

Namespace: MindFusion.Scheduling
Assembly: PocketPlanner

 Syntax

C#

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

Visual Basic

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

 Parameters

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

 Property Value

The Contact 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