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

    Describes a 2D transform.

    interface ITransformData {
        animating?: boolean;
        scale: number;
        userGestureActive?: boolean;
        x: number;
        y: number;
    }

    Properties

    animating?: boolean

    If this transform is an intermediate step in an animation.

    Note that this property is ignored when calling IReaderViewTransformManager.applyTransform().

    false
    

    3

    scale: number

    The scale, where 1 means no scaling applied.

    0

    userGestureActive?: boolean

    If this transform is due to a user gesture, such as pan-zooming.

    Note that this property is ignored when calling IReaderViewTransformManager.applyTransform().

    false
    

    4

    x: number

    Translation on the x-axis.

    1

    y: number

    Translation on the y-axis.

    2