com.aspose.imaging
Class WrapMode

java.lang.Object
  extended by java.lang.Enum
      extended by com.aspose.imaging.WrapMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable

public final class WrapMode
extends java.lang.Enum

Specifies how a texture or gradient is tiled when it is smaller than the area being filled.

See Also:
Serialized Form

Field Summary
static int Clamp
           The texture or gradient is not tiled.
static int Tile
           Tiles the gradient or texture.
static int TileFlipX
           Reverses the texture or gradient horizontally and then tiles the texture or gradient.
static int TileFlipXY
           Reverses the texture or gradient horizontally and vertically and then tiles the texture or gradient.
static int TileFlipY
           Reverses the texture or gradient vertically and then tiles the texture or gradient.
 
Method Summary
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

Clamp

public static final int Clamp

The texture or gradient is not tiled.

See Also:
Constant Field Values

Tile

public static final int Tile

Tiles the gradient or texture.

See Also:
Constant Field Values

TileFlipX

public static final int TileFlipX

Reverses the texture or gradient horizontally and then tiles the texture or gradient.

See Also:
Constant Field Values

TileFlipXY

public static final int TileFlipXY

Reverses the texture or gradient horizontally and vertically and then tiles the texture or gradient.

See Also:
Constant Field Values

TileFlipY

public static final int TileFlipY

Reverses the texture or gradient vertically and then tiles the texture or gradient.

See Also:
Constant Field Values