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#
public Bitmap this[
	int index
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( _
	index As Integer _
) As Bitmap
	Get
Visual C++
public:
virtual property Bitmap^ default[int index] {
	Bitmap^ get (int index) sealed;
}

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.

Implements

IImageSequenceSource..::..Item[([( Int32])])

Exceptions

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

See Also