PocketPlanner Programmer's Guide

DayOfWeekStyleCollection.Item Property

See Also

Gets or sets the DayOfWeekStyle located at the specified index within this collection.

Namespace: MindFusion.Scheduling.Compact
Assembly: PocketPlanner

 Syntax

C#

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

Visual Basic

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

 Parameters

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

 Property Value

A DayOfWeekStyle instance located at the specified index within this collection.

 Remarks

This indexer property allows using the C# [] or VB.NET () operators to access elements of this collection by their integer index.

 See Also