Barcode Xpress for .NET Core v14.0 - Updated
Accusoft.BarcodeXpressSdk Namespace / Reader Class / Analyze Method / Analyze(Object) Method
An instance of an object containing the image to be analyzed. The object passed in must be an ImGearRasterPage object, or on Windows only, an Accusoft type that implements the CopyoTo(object destination) method. An example of such a type is the System.Drawing.Bitmap object (Windows only).




In This Topic
    Analyze(Object) Method
    In This Topic
    Detects barcodes on the given Object.
    Syntax
    'Declaration
     
    
    Public Overloads Function Analyze( _
       ByVal Target As Object _
    ) As Result()
    'Usage
     
    
    Dim instance As Reader
    Dim Target As Object
    Dim value() As Result
     
    value = instance.Analyze(Target)
    public Result[] Analyze( 
       object Target
    )
    public: Result*[]* Analyze( 
       Object* Target
    ) 
    public:
    array<Result^>^ Analyze( 
       Object^ Target
    ) 

    Parameters

    Target
    An instance of an object containing the image to be analyzed. The object passed in must be an ImGearRasterPage object, or on Windows only, an Accusoft type that implements the CopyoTo(object destination) method. An example of such a type is the System.Drawing.Bitmap object (Windows only).
    See Also