Leadtools.Windows.Media.Effects Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.02.15
RomanMosaicCommandBitmapEffectsFlags Enumeration
See Also  
Leadtools.Windows.Media.Effects.SpecialEffects Namespace : RomanMosaicCommandBitmapEffectsFlags Enumeration





This enumeration contains all flags that are needed by the RomanMosaicCommandBitmapEffect. 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 RomanMosaicCommandBitmapEffectsFlags 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As RomanMosaicCommandBitmapEffectsFlags
C# 
[FlagsAttribute()]
public enum RomanMosaicCommandBitmapEffectsFlags : Enum 
Managed Extensions for C++ 
[FlagsAttribute()]
__value public enum RomanMosaicCommandBitmapEffectsFlags : public Enum 
C++/CLI 
[FlagsAttribute()]
public enum class RomanMosaicCommandBitmapEffectsFlags : public Enum 
XAML Attributes Usage 

<object property=EnumerationValue .../>

Members

MemberDescription
Rectangular Draws 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.
Circular Draws 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.
Both Draws 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.
Flat Do not apply shadows.
ColoredShadow Apply colored shadows.
GrayShadow Apply grayscale shadows.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
GroupFlags
Drawing ShapeRectangular, Circular, Both
ShadowFlat, Gray, Colored

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.Windows.Media.Effects.SpecialEffects.RomanMosaicCommandBitmapEffectsFlags

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003

See Also