LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
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 LeadPoint()
Visual Basic (Usage)Copy Code
Dim instance As SearchRegistrationMarksCommandData
Dim value() As LeadPoint
 
instance.MarkDetectedPoints = value
 
value = instance.MarkDetectedPoints
C# 
public LeadPoint[] MarkDetectedPoints {get; set;}
C++/CLI 
public:
property array<LeadPoint>^ MarkDetectedPoints {
   array<LeadPoint>^ get();
   void set (    array<LeadPoint>^ value);
}

Property 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: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also