Leadtools.Windows.Media.Effects Send comments on this topic. | Back to Introduction - LEADTOOLS WPF | Help Version 16.5.9.25
MosaicTilesCommandBitmapEffectsFlags Enumeration
See Also  
Leadtools.Windows.Media.Effects.SpecialEffects Namespace : MosaicTilesCommandBitmapEffectsFlags Enumeration





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

<object property=EnumerationValue .../>

XAML Attributes Usage 

<object property=EnumerationValue .../>

Members

MemberDescription
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.
GroupFlags
Drawing ShapeCartesian, Polar
ShadowFlat, Gray, Colored

Inheritance Hierarchy

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

Requirements

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

See Also