Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Enumeration SyncMediaRangeSeekBehavior

    Enumeration Members

    ALWAYS_REMOVE_RANGE: "ALWAYS_REMOVE_RANGE"

    Any seeking removes the range.

    CLAMP_TO_RANGE: "CLAMP_TO_RANGE"

    Calls to any SyncMediaPlayer seek method will clamp the timeline position to be within the range. Seeking to a position after the range clamps the position to range.end. Seeking to a position before the range clamps the position to range.start.

    Note that if the SyncMediaPlayer is attached to a ReaderView, the playback range will still be removed if the ReaderView is navigated so that playback range no longer intersects with the ReaderView's reading position.

    REMOVE_IF_OUTSIDE_RANGE: "REMOVE_IF_OUTSIDE_RANGE"

    Seeking to a position outside the range removes the range. A position is considered outside the range if:

    • The position is before range.start
    • The position is after range.end