Leadtools.ImageProcessing.SpecialEffects Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
TunnelCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.SpecialEffects Namespace : TunnelCommandFlags Enumeration



Flags that indicate the background color and which image dimension extends along the Z-axis.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Syntax

Visual Basic (Declaration)  
<FlagsAttribute()>
Public Enum TunnelCommandFlags 
   Inherits Enum
Visual Basic (Usage) Copy Code
Dim instance As TunnelCommandFlags
C#  
[FlagsAttribute()]
public enum TunnelCommandFlags : Enum 
C++/CLI  
[FlagsAttribute()]
public enum class TunnelCommandFlags : public Enum 

Members

Member Description
None No change.
Color Use the FillColor property of the TunnelCommand class, or the fillColor parameter, if you are using the appropriate TunnelCommand Constructor, as a background color.
NoChange Use the image itself as a background.
WidthAxis Image width will be along the Z-axis.
HeightAxis Image height will be along the Z-axis.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
Group Flags
Flags that indicate the background color Color, NoChange
Flags that indicate which image dimension is along the Z-axis WidthAxis, HeightAxis

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.SpecialEffects.TunnelCommandFlags

Requirements

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

See Also