Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
CombineFastCommand Constructor(RasterImage,Rectangle,Point,CombineFastCommandFlags)
See Also 
Leadtools.ImageProcessing Namespace > CombineFastCommand Class > CombineFastCommand Constructor : CombineFastCommand Constructor(RasterImage,Rectangle,Point,CombineFastCommandFlags)




destinationImage
The destination image for the command.
destinationRectangle
The rectangle in the destination image.
sourcePoint
The origin of the source rectangle.
flags
Flags which control the combine command.
Initializes a new instance of the CombineFastCommand class with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal destinationImage As RasterImage, _
   ByVal destinationRectangle As Rectangle, _
   ByVal sourcePoint As Point, _
   ByVal flags As CombineFastCommandFlags _
)
Visual Basic (Usage)Copy Code
Dim destinationImage As RasterImage
Dim destinationRectangle As Rectangle
Dim sourcePoint As Point
Dim flags As CombineFastCommandFlags
 
Dim instance As CombineFastCommand(destinationImage, destinationRectangle, sourcePoint, flags)
C# 
public CombineFastCommand( 
   RasterImage destinationImage,
   Rectangle destinationRectangle,
   Point sourcePoint,
   CombineFastCommandFlags flags
)
Managed Extensions for C++ 
public: CombineFastCommand( 
   RasterImage* destinationImage,
   Rectangle destinationRectangle,
   Point sourcePoint,
   CombineFastCommandFlags flags
)
C++/CLI 
public:
CombineFastCommand( 
   RasterImage^ destinationImage,
   Rectangle destinationRectangle,
   Point sourcePoint,
   CombineFastCommandFlags flags
)

Parameters

destinationImage
The destination image for the command.
destinationRectangle
The rectangle in the destination image.
sourcePoint
The origin of the source rectangle.
flags
Flags which control the combine command.

Example

For an example, refer to CombineFastCommand

Remarks

destinationImage will hold the result of combining this image with the image passed to the RasterCommand.Run method.

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