TileFlip

PictureFillFormat.TileFlip property

Flips the texture tile around its horizontal, vertical or both axis. Read/write TileFlip.

public TileFlip TileFlip { get; set; }

Remarks

Default is NoFlip.

Examples

[C#]
using (Presentation presentation = new Presentation("demo.pptx"))
{
    ISlide slide = presentation.Slides[0];

    // Gets the picture fill format of the shape
    IPictureFillFormat pictureFillFormat = slide.Shapes[0].FillFormat.PictureFillFormat;

    // Sets the picture fill mode to Tile
    pictureFillFormat.PictureFillMode = PictureFillMode.Tile;

    // Flips the texture tile around its vertical axis.
    pictureFillFormat.TileFlip = TileFlip.FlipY;
}

See Also