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




This enumeration indicates how to apply the puzzle effect to an image.

Syntax

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

Members

MemberDescription
None No Flags selected.
Border Draw borders around the puzzle blocks. Use the BorderColor property of the PuzzleEffectCommand class, or the borderColor parameter if you are using the appropriate Constructor, to set the border color. If the Resize flag is not set and the edge blocks have a different size than the inner blocks, the border will not be drawn for the right and the bottom edges.
Shuffle Shuffle the blocks around, controlling the randomization process by the Randomize property of the PuzzleEffectCommand class, or the randomize parameter of the apprpriate Constructor. If this flag is not set, the blocks will stay in their original position.
Size Apply the puzzle effect using the the XBlock and YBlock properties of the PuzzleEffectCommand class, or the xblock and yblock parameters if you are using the appropriate Constructor, as the width and height of each block, in pixels.
Count Apply the puzzle effect using the the XBlock and YBlock properties of the PuzzleEffectCommand class, or the xblock and yblock parameters if you are using th eappropriate Constructor, as the number of blocks per row and per column.
Resize Resize the image to be sure that all blocks have equal size. If this flag is not set then the remainder of the image (edge blocks) will be manipulated differently than the inner blocks.

Inheritance Hierarchy

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

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