@jsfkit/types
    Preparing search index...

    Type Alias Tile

    Tile settings for image fills.

    Defines how an image should be repeated (tiled) when used as a fill, including scaling, alignment, offset, and flip transformations.

    type Tile = {
        align?: RectAlignment;
        flip?: FlipAxis;
        sx?: Percentage;
        sy?: Percentage;
        tx?: EmuValue;
        ty?: EmuValue;
    }
    Index

    Properties

    Properties

    Alignment position for the first tile relative to the shape bounds (applied after sx/sy scaling, before tx/ty offset).

    flip?: FlipAxis

    Direction(s) in which to flip the source image while tiling.

    Horizontal scale factor to apply to the source image.

    Vertical scale factor to apply to the source image.

    Additional horizontal offset after alignment, in EMUs.

    Additional vertical offset after alignment, in EMUs.