LEADTOOLS Image Processing (Leadtools.ImageProcessing.SpecialEffects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
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 System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As MosaicTilesCommandFlags
C# 
[FlagsAttribute()]
public enum MosaicTilesCommandFlags : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
[FlagsAttribute()]
public enum class MosaicTilesCommandFlags : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
CartesianDraws 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.
PolarDraw 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.
ShadowFlatDo not apply a shadow.
ShadowGrayApply grayscale shadows.
ShadowRGBApply colored 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 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also