LEADTOOLS Image Processing (Leadtools.ImageProcessing.SpecialEffects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
RomanMosaicCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.SpecialEffects Namespace : RomanMosaicCommandFlags Enumeration



This enumeration contains all flags that are needed by the RomanMosaicCommand. It is indicate the values used to select the shape of the tiles and the type of shadow.

Syntax

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

Members

MemberDescription
BothDraws both rounded rectangular and rectangular tiles. Draws the largest circle that will fit inside the image and fill that with rings of rounded rectangular tiles. Any part of the image that is not covered by the rounded rectangular tiles gets covered with a grid of rectangular tiles.
CircularDraws rounded rectangular tiles in rings around the center of the image. When this flag is used TileWidth property will contain the radial component of the tile in pixels.
ColoredShadowApply colored shadows.
FlatDo not apply shadows.
GrayShadowApply grayscale shadows.
RectangularDraws rectangular tiles in a grid. When this flag is used TileWidth property will contain the tile width in pixels, and TileHeight property will contain the tile height in pixels.

Remarks

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

Inheritance Hierarchy

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

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