This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum DeinterlaceCommandFlags Inherits Enum |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
[FlagsAttribute()] public enum DeinterlaceCommandFlags : Enum |
Managed Extensions for C++ | |
---|---|
[FlagsAttribute()] __value public enum DeinterlaceCommandFlags : public Enum |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class DeinterlaceCommandFlags : public Enum |
Member | Description |
---|---|
None | No change. |
Odd | Remove the odd lines. |
Even | Remove the even lines. |
Smooth | Deinterlace the image by averaging the data lines and copying the averaged data into the removed lines. |
Normal | Deinterlace the image by copying the data line 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: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family