Leadtools.CF Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.6.15
DestinationRectangle Property
See Also 
Leadtools.ImageProcessing Namespace > CombineCommand Class : DestinationRectangle Property



The rectangle in the destination image.

Syntax

Visual Basic (Declaration) 
Public Property DestinationRectangle As Rectangle
Visual Basic (Usage)Copy Code
Dim instance As CombineCommand
Dim value As Rectangle
 
instance.DestinationRectangle = value
 
value = instance.DestinationRectangle
C# 
public Rectangle DestinationRectangle {get; set;}
C++/CLI 
public:
property Rectangle DestinationRectangle {
   Rectangle get();
   void set (Rectangle value);
}

Return Value

A Rectangle object that specifies the portion in DestinationImage to be used.

Example

For an example, refer to CombineCommand.

Remarks

This rectangle 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