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





This enumeration controls the RingEffectCommand behavior. These values can be OR-ed together, unless otherwise specified

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum RingEffectCommandBitmapEffectsFlags 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As RingEffectCommandBitmapEffectsFlags
C# 
[FlagsAttribute()]
public enum RingEffectCommandBitmapEffectsFlags : Enum 
Managed Extensions for C++ 
[FlagsAttribute()]
__value public enum RingEffectCommandBitmapEffectsFlags : public Enum 
C++/CLI 
[FlagsAttribute()]
public enum class RingEffectCommandBitmapEffectsFlags : public Enum 
XAML Attributes Usage 

<object property=EnumerationValue .../>

Members

MemberDescription
Color Controls the output of rings which have undefined areas. Fill the undefined areas with color that is stored in the Color property of the RingEffectCommandBitmapEffect class. If you use this flag, do not use the Repeat flag or the NoChange flag.
Repeat Controls the output of rings which have undefined areas. Repeat the edges of the region and fill these values in the undefined areas. The edge will be repeated halfway throughout the missing portion of the ring. If you use this flag, do not use the Color flag or the NoChange flag.
NoChange Controls the output of rings which have undefined areas. Leave the edge pixels unchanged. If you rotate an incomplete ring, the original image pixels will remain in places where you would have undefined portions of the ring. If you use this flag, do not use the Color flag or the Repeat flag.
FixedAngle Rotate each ring against the inner ring by a fixed rotation angle specified in the Angle property of the RingEffectCommandBitmapEffect class.
Radius Indicates that the Radius property of the RingEffectCommandBitmapEffect class contains the width of each ring, in pixels. If you use this flag, do not use the MaxRadius flag.
MaxRadius Indicates that the Radius property of the RingEffectCommandBitmapEffect class contains the maximum radius, in pixels, that corresponds to the external ring. In this case, the width of each ring is (radius value / (ring count value + 1)). If you use this flag, do not use the Radius flag.

Inheritance Hierarchy

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

Requirements

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

See Also