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



The origin of the source rectangle.

Syntax

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

Return Value

A Point object that specifies the origin of the source rectangle to be used.

Example

For an example, refer to CombineFastCommand.

Remarks

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