Ctor.
Namespace: VideoDVRAssembly: VideoDVR (in VideoDVR.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public ImageSequence( IImageSequenceSource source, int start = 0, int end = 0, int skip = 0 ) |
Visual Basic |
---|
Public Sub New ( _ source As IImageSequenceSource, _ Optional start As Integer = 0, _ Optional end As Integer = 0, _ Optional skip As Integer = 0 _ ) |
Visual C++ |
---|
public: ImageSequence( IImageSequenceSource^ source, int start = 0, int end = 0, int skip = 0 ) |
Parameters
- source
- Type: VideoDVR..::..IImageSequenceSource
The image sequence source.
- start (Optional)
- Type: System..::..Int32
The first frame to return (0-based)
- end (Optional)
- Type: System..::..Int32
The last frame to return, with respect to the skip factor. If below 0, end is set to the last image.
- skip (Optional)
- Type: System..::..Int32
Whether to skip frames. Must be positive.
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | If source is null. |
System..::..ArgumentOutOfRangeException | If start, end or skip are out of range. |