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



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 CombineCommand 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 CombineCommandFlags _
)
Visual Basic (Usage)Copy Code
Dim destinationImage As RasterImage
Dim destinationRectangle As Rectangle
Dim sourcePoint As Point
Dim flags As CombineCommandFlags
 
Dim instance As CombineCommand(destinationImage, destinationRectangle, sourcePoint, flags)
C++/CLI 
public:
CombineCommand( 
   RasterImage^ destinationImage,
   Rectangle destinationRectangle,
   Point sourcePoint,
   CombineCommandFlags 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 CombineCommand.

Remarks

destinationRectangle and sourcePoint must be in image coordinates. Therefore, you must account for the RasterImage.ViewPerspective of the image. For information about image coordinates, refer to Accounting for View Perspective.

Requirements

Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6

See Also