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

    Interface used for describing serialized RangeSelectors.

    interface IRangeSelectorData {
        end: ISelectorData;
        refinedBy?: ISelectorData | ISelectorData[];
        start: ISelectorData;
        type: RANGE_SELECTOR;
    }

    Hierarchy (View Summary)

    Properties

    The Selector which describes the exclusive ending point of the range.

    A Selector can optionally have a list of selectors that further refine the intended target location. Multiple Selectors should select the same content, however some Selectors will not have the same precision as others. The first selector in the array has the highest precision.

    See https://www.w3.org/TR/annotation-model/#refinement-of-selection

    The Selector which describes the inclusive starting point of the range.

    The type of Selector as specified in https://www.w3.org/TR/annotation-model/#selectors