PocketPlanner Programmer's Guide

DateCollection.OnSetComplete Method

See Also

CollectionBase.OnSetComplete override.

Namespace: MindFusion.Scheduling.Compact
Assembly: PocketPlanner

 Syntax

C#

protected virtual void OnSetComplete (
    int index,
    Object oldValue,
    Object newValue
)

Visual Basic

Protected Overridable Sub OnSetComplete ( _
    index As Integer, _
    oldValue As Object, _
    newValue As Object _
)

 Parameters

index
The zero-based index at which oldValue can be found.
oldValue

The value to replace with newValue.

newValue
The new value of the element at index.

 See Also