Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.13 KB

File metadata and controls

34 lines (26 loc) · 1.13 KB
layout default-layout
title interface DecodedBarcodesUnit - Dynamsoft Core Module JS Edition API Reference
description This page shows the JS edition of the interface DecodedBarcodesUnit in Dynamsoft Core Module.
keywords decoded barcodes, Image unit, JS
needAutoGenerateSidebar true
noTitleIndex true

DecodedBarcodesUnit

A unit that contains decoded barcode elements.

interface DecodedBarcodesUnit extends Core.IntermediateResultUnit {
    decodedBarcodes: Array<DecodedBarcodeElement>;         
}

decodedBarcodes

An array of DecodedBarcodeElement objects. Each DecodedBarcodeElement represents a successfully decoded barcode, including information such as the barcode format, text, and other relevant details.

decodedBarcodes: Array<DecodedBarcodeElement>;

See also

  • [DecodedBarcodeElement]({{ site.js_api }}interfaces/decoded-barcode-element.html)