XpsTileMode

Inheritance: java.lang.Object, java.lang.Enum

public enum XpsTileMode extends Enum<XpsTileMode>

Valid values of tiling brushes’ TileMode property.

Fields

FieldDescription
NoneIn this mode, only the single base tile is drawn.
TileIn 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.
FlipXThe tile arrangement is similar to the Tile tile mode, but alternate columns of tiles are flipped horizontally.
FlipYThe tile arrangement is similar to the Tile tile mode, but alternate rows of tiles are flipped vertically.
FlipXYThe 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.

Methods

MethodDescription
values()
valueOf(String name)

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.

values()

public static XpsTileMode[] values()

Returns: com.aspose.xps.XpsTileMode[]

valueOf(String name)

public static XpsTileMode valueOf(String name)

Parameters:

ParameterTypeDescription
namejava.lang.String

Returns: XpsTileMode