com.aspose.xps

Enum XpsTileMode

    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      FlipX
      The tile arrangement is similar to the Tile tile mode, but alternate columns of tiles are flipped horizontally.
      FlipXY
      The tile arrangement is similar to the Tile tile mode, but alternate columns of tiles are flipped horizontally and alternate rows of tiles are flipped vertically.
      FlipY
      The tile arrangement is similar to the Tile tile mode, but alternate rows of tiles are flipped vertically.
      None
      In this mode, only the single base tile is drawn.
      Tile
      In this mode, the base tile is drawn and the remaining area is filled by repeating the base tile such that the right edge of each tile abuts the left edge of the next, and the bottom edge of each tile abuts the top edge of the next.
    • Enum Constant Detail

      • None

        public static final XpsTileMode None

        In this mode, only the single base tile is drawn. The remaining area is left transparent.

      • Tile

        public static final XpsTileMode Tile

        In this mode, the base tile is drawn and the remaining area is filled by repeating the base tile such that the right edge of each tile abuts the left edge of the next, and the bottom edge of each tile abuts the top edge of the next.

      • FlipX

        public static final XpsTileMode FlipX

        The tile arrangement is similar to the Tile tile mode, but alternate columns of tiles are flipped horizontally. The base tile is positioned as specified by the viewport. Tiles in the columns to the left and right of this tile are flipped horizontally.

      • FlipY

        public static final XpsTileMode FlipY

        The tile arrangement is similar to the Tile tile mode, but alternate rows of tiles are flipped vertically. The base tile is positioned as specified by the viewport. Rows above and below are flipped vertically.

      • FlipXY

        public static final XpsTileMode FlipXY

        The tile arrangement is similar to the Tile tile mode, but alternate columns of tiles are flipped horizontally and alternate rows of tiles are flipped vertically. The base tile is positioned as specified by the viewport.

    • Method Detail

      • values

        public static XpsTileMode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (XpsTileMode c : XpsTileMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static XpsTileMode valueOf(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null