Resource Base
Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
TextResultCallback
is The interface to handle callback when the text results are returned.
interface com.dynamsoft.dbr.TextResultCallback
Method | Description |
---|---|
textResultCallback |
Represents the method to handle the text result array returned by the library. |
The abstract class for users to get text result from the callback.
void textResultCallback(int var1, TextResult[] var2, Object var3);
Parameters
frameId
: The ID of the frame.
results
: Recognized barcode results of the frame.
userData
: Arguments passed to your function.
Code Snippet
TextResultCallback textResultCallback = new TextResultCallback() {
@Override
public void textResultCallback(int frameID, TextResult[] textResults, Object userdate) {
// Add your code
}
};
latest version