Leadtools.ImageProcessing.SpecialEffects Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
MosaicTilesCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.SpecialEffects Namespace : MosaicTilesCommandFlags Enumeration



This enumeration contains all flags that are needed by the MosaicTilesCommand. It indicates whether to use arc-shaped or rectangular-shaped tiles, and what type of shadowing to use, if any.

Syntax

Visual Basic (Declaration)  
<FlagsAttribute()>
Public Enum MosaicTilesCommandFlags 
   Inherits Enum
Visual Basic (Usage) Copy Code
Dim instance As MosaicTilesCommandFlags
C#  
[FlagsAttribute()]
public enum MosaicTilesCommandFlags : Enum 
C++/CLI  
[FlagsAttribute()]
public enum class MosaicTilesCommandFlags : public Enum 

Members

Member Description
Cartesian Draws rectangular tiles using Cartesian coordinates. If this flag is used, the TileWidth property will contain the tile width in pixels, and the TileHeight property will contain the tile height in pixels.
Polar Draw arc-shaped tiles using polar coordinates. If this flag is used, the TileWidth property will contain the angular component of the tile, in degrees, and the TileHeight property will contain the radial component of the tile in pixels.
ShadowFlat Do not apply a shadow.
ShadowRGB Apply colored shadows.
ShadowGray Apply grayscale shadows.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
Group Flags
Drawing Shape Cartesian, Polar
Shadow Flat, Gray, Colored

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.SpecialEffects.MosaicTilesCommandFlags

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also