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





Flags for the RotateCommandBitmapEffect.Flags property.

Syntax

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

<object property=EnumerationValue .../>

Members

MemberDescription
None Default, do not resize the image, crop it.
Resize Size resulting image as needed.
Resample Perform bilinear interpolation when rotating.
Bicubic Perform bicubic interpolation when rotating.

Remarks

RotateCommandBitmapEffectsFlags.Resample and RotateCommandBitmapEffectsFlags.Bicubic can be combined with RotateCommandBitmapEffectsFlags.Resize, but they can not be combined with each other. Therefore, you can pass RotateCommandBitmapEffectsFlags.Resample Or RotateCommandBitmapEffectsFlags.Resize, but not RotateCommandBitmapEffectsFlags.Resample | RotateCommandBitmapEffectsFlags.Bicubic.

If RotateCommandBitmapEffectsFlags.Resize is set, then the image is resized. Otherwise, the image is cropped.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.Windows.Media.Effects.RotateCommandBitmapEffectsFlags

Requirements

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

See Also