Enum GeoBrushWrapMode
This enumeration determines how a texture is filled in with a GeoTextureBrush when the area to be filled is larger than the texture.
public enum GeoBrushWrapMode
Fields
Clamp = 1The texture will not be tiled.
Tile = 0The texture is tiled to fill the entire area.
TileFlipX = 2Reverse the texture horizontally and then tileView the texture.
TileFlipXY = 4Reverse the texture horizontally and vertically and then tileView the texture.
TileFlipY = 3Reverse the texture vertically and then tileView the texture.
Remarks
This will allow you to achieve a number of different effects. We suggest you try them out with your own textures and see which one looks best for your image.