This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
Supported in Silverlight, Windows Phone 7Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum DeinterlaceCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As DeinterlaceCommandFlags |
C# | |
---|---|
[FlagsAttribute()] public enum DeinterlaceCommandFlags : System.Enum, IComparable, IConvertible, IFormattable |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class DeinterlaceCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable |
Member | Description |
---|---|
Even | Remove the even lines. |
None | No change. |
Normal | Deinterlace the image by copying the data line into the removed lines. |
Odd | Remove the odd lines. |
Smooth | Deinterlace the image by averaging the data lines and copying the averaged data into the removed lines. |
You can use a bitwise OR (|) to specify one flag from each group.
Group | Flags |
Flags that indicate how to deinterlace the image. | Smooth, Normal |
Flags that indicate whether to remove odd or even lines. | Odd, Even |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.Effects.DeinterlaceCommandFlags
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)