Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
MarkDetectedPoints Property
See Also 
Leadtools.ImageProcessing.Core Namespace > SearchRegistrationMarksCommandData Class : MarkDetectedPoints Property



Gets or sets an array which will be filled with the location points of the detected registration marks.

Syntax

Visual Basic (Declaration) 
Public Property MarkDetectedPoints As Point()
Visual Basic (Usage)Copy Code
Dim instance As SearchRegistrationMarksCommandData
Dim value() As Point
 
instance.MarkDetectedPoints = value
 
value = instance.MarkDetectedPoints
C# 
public Point[] MarkDetectedPoints {get; set;}
C++/CLI 
public:
property array<Point>^ MarkDetectedPoints {
   array<Point>^ get();
   void set (Pointarray<value>^ value);
}

Return Value

Array which will be filled with the location points of the detected registration marks. SearchRegistrationMarksCommand will fill the first MarkDetectedCount elements in this array.

Example

Remarks

For more information, refer to Detecting Registration Marks.

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