meo-skia-canvas
    Preparing search index...

    Interface DOMRectInit

    The fields DOMRect.fromRect reads a rectangle from.

    interface DOMRectInit {
        height?: number;
        width?: number;
        x?: number;
        y?: number;
    }
    Index
    height?: number

    Height. May be negative, which puts y at the bottom edge.

    width?: number

    Width. May be negative, which puts x at the right edge.

    x?: number

    Horizontal position of the origin corner. Defaults to 0.

    y?: number

    Vertical position of the origin corner. Defaults to 0.