mcSequenceEndBehavior Enumeration
|
|
Legal values for the McView.SequenceEndBehavior property.
Namespace:
MediaCy.IQL.Display.Viewer
Assembly:
MediaCy.IQL.Display.Viewer (in MediaCy.IQL.Display.Viewer.dll) Version: 10.0.6912.0
SyntaxPublic Enumeration mcSequenceEndBehavior
Members
| Member name | Value | Description |
---|
| mcsebLoop | 0 | When end-of-sequence is reached, the sequence isrewound to the first frame (or last frame, if SequenceDirection is negative)
and playback continues from there in the same direction as before. |
| mcsebStop | 1 | When end-of-sequence is reached, playback stops atthe last frame still within the SequenceFrameRange. |
| mcsebReverse | 2 | When end-of-sequence is reached, the playbackdirection is reversed, and playback continues in the opposite direction from
before. After reversal, playback always starts from the end or start of the
SequenceFrameRange, so if the number of frames in the SequenceFrameRange is
not evenly divisible by the SequenceStepCount, then the particular frames
displayed when playing forward will be different from those played in
reverse. |
RemarksThe end-of-sequence is the playback step that steps beyond the
SequenceFrameRange. If SequenceStepCount is one, this frame will be the next
one after the last frame of the SequenceFrameRange when SequenceDirection is
positive (SequencePlayForward) and it will be the next one after the first frame
of the SequenceFrameRange when SequenceDirection is negative
(SequencePlayBackward).
See Also