dbicCalendar Send comments on this topic.
RemoveAt Method
See Also 
dbicPIM Assembly > Dbi.PIM Namespace > AlarmItemCollection Class : RemoveAt Method

index
The zero-based index of the element to remove.
Removes the element at the specified index of the System.Collections.CollectionBase instance. This method is not overridable.

Syntax

Visual Basic (Declaration) 
Public Sub RemoveAt( _
   ByVal index As Integer _
) 
C# 
public void RemoveAt( 
   int index
)

Parameters

index
The zero-based index of the element to remove.

Exceptions

ExceptionDescription
System.ArgumentOutOfRangeExceptionindex is less than zero. -or- index is equal to or greater than System.Collections.CollectionBase.Count.

Remarks

If the index value provided in less that zero, or greater than the value in Count property of the dbiContactCollection an ArgumentExceptionOutOfRange will occur.

When an item is removed from the collection, the index value for the subsequent items change.  All the information about the removed item is deleted.

Requirements

Target Platforms: Current Windows operating system with .NET 8.

See Also