PocketPlanner Programmer's Guide

TaskCollection.Insert Method

See Also

Inserts a location object into the collection at the specified index.

Namespace: MindFusion.Scheduling
Assembly: PocketPlanner

 Syntax

C#

public void Insert (
    int index,
    Task task
)

Visual Basic

Public Sub Insert ( _
    index As Integer, _
    task As Task _
)

 Parameters

index
The zero-based index at which the task must be inserted.
task
An instance of the Task class to be added to the collection.

 See Also