Returns a particular image of this sequence. The caller is responsible for disposing it.

Namespace: VideoDVR
Assembly: VideoDVR (in VideoDVR.exe) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
Bitmap this[
	int index
] { get; }
Visual Basic
ReadOnly Default Property Item ( _
	index As Integer _
) As Bitmap
	Get
Visual C++
property Bitmap^ default[int index] {
	Bitmap^ get (int index);
}

Parameters

index
Type: System..::..Int32
The index of the image to return. Must be positive and less than NumImages.

Return Value

The image at position index.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionIf the index is out of bounds.
System..::..ExceptionOn errors.

See Also