Barcode Xpress for .NET Framework v14.0 - Updated
Accusoft.BarcodeXpressSdk Namespace / Result Class / Point3 Property




In This Topic
    Point3 Property
    In This Topic
    Gets the bottom-right point of the recognized barcode.
    Syntax
    'Declaration
     
    Public ReadOnly Property Point3 As Point
    'Usage
     
    Dim instance As Result
    Dim value As Point
     
    value = instance.Point3
    public Point Point3 {get;}
    public: __property Point get_Point3();
    public:
    property Point Point3 {
       Point get();
    }

    Property Value

    A System.Drawing.Point object.
    Remarks

    See the Result Class description for general information about retrieving results.

    Point properties 1 through 4 locate the corner points of linear 1D barcodes. When the barcode is in the horizontal orientation, BarcodeXpress reads it from left to right, assigning values to the Point 1 through 4 properties. The Point1 property is the upper-left corner point of the barcode. With any rotation of the barcode on the image, the Point value assigned to the corners rotate with the barcode. no matter what the rotation is, the Point properties always identify the same corner point of the barcode.

    See the Boundary and Point Properties topic in the Barcode Xpress User Guide under Concepts -> Specifications for more information.

    See Also