You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: programming/maui/api-reference/barcode-result-item.md
+23-23Lines changed: 23 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,35 +22,35 @@ The `BarcodeResultItem` class represents a barcode result item decoded by the ba
22
22
classBarcodeResultItem extends CapturedResultItem
23
23
```
24
24
25
-
## Methods
26
-
27
-
| Method | Description |
28
-
| ------ | ----------- |
29
-
| [`Format`](#format) | Get the format of the barcode. |
30
-
| [`FormatString`](#formatstring) | Get the format text of the barcode. |
31
-
| [`Text`](#text) | Get the decode text of the barcode. |
32
-
| [`Bytes`](#bytes) | Get the decode byte of the barcode. |
33
-
| [`Location`](#location) | Get the location of the barcode. |
34
-
| [`Confidence`](#confidence) | Get the confidence of the decoding result. |
35
-
| [`Angle`](#angle) | Get the rotation angle of the barcode. |
36
-
| [`ModuleSize`](#modulesize) | Get the module size of the barcode. |
37
-
| [`IsDPM`](#isdpm) | Check whether the barcode is a DPM barcode. |
38
-
| [`IsMirrored`](#ismirrored) | Check whether the barcode is mirrored. |
39
-
40
-
The following methods are inherited from class [`CapturedResultItem`]({{ site.dcv_maui_api }}core/captured-result-item.html).
41
-
42
-
| Method | Description |
43
-
| ------ | ----------- |
44
-
| [`Type`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html#type) | Get the type of the captured result item. |
45
-
| [`TargetROIDefName`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html#targetroidefname) | The name of the [`TargetROIDef`]({{ site.dcv_parameters_reference }}target-roi-def/){:target="_blank"} objectwhichincludesataskthatgeneratedtheresult. |
| [`Format`](#format) | *[EnumBarcodeFormat]({{ site.dbr_maui_api }}enum/barcode-format.html)* | Get the format of the barcode. |
30
+
| [`FormatString`](#formatstring) | *string* | Get the format text of the barcode. |
31
+
| [`Text`](#text) | *string* | Get the decode text of the barcode. |
32
+
| [`Bytes`](#bytes) | *byte[]* | Get the decode byte of the barcode. |
33
+
| [`Location`](#location) | *Quadrilateral* | Get the location of the barcode. |
34
+
| [`Confidence`](#confidence) | *int* | Get the confidence of the decoding result. |
35
+
| [`Angle`](#angle) | *int* | Get the rotation angle of the barcode. |
36
+
| [`ModuleSize`](#modulesize) | *int* | Get the module size of the barcode. |
37
+
| [`IsDPM`](#isdpm) | *bool* | Check whether the barcode is a DPM barcode. |
38
+
| [`IsMirrored`](#ismirrored) | *bool* | Check whether the barcode is mirrored. |
39
+
40
+
The following properties are inherited from class [`CapturedResultItem`]({{ site.dcv_maui_api }}core/captured-result-item.html).
41
+
42
+
| Property | Type | Description |
43
+
| -------- | ---- | ----------- |
44
+
| [`Type`]({{ site.dcv_maui_api }}core/captured-result-item.html#type) | *[EnumCapturedResultItemType]({{ site.dcv_maui_api }}core/enum/captured-result-item-type.html)* | Get the type of the captured result item. |
45
+
| [`TargetROIDefName`]({{ site.dcv_maui_api }}core/captured-result-item.html#targetroidefname) | *string* | The name of the [`TargetROIDef`]({{ site.dcv_parameters_reference }}target-roi-def/){:target="_blank"} objectwhichincludesataskthatgeneratedtheresult. |
Copy file name to clipboardExpand all lines: programming/maui/api-reference/decoded-barcodes-result.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,15 +22,15 @@ The `DecodedBarcodesResult` class represents the result of a barcode reading pro
22
22
classDecodedBarcodesResult
23
23
```
24
24
25
-
## Methods
26
-
27
-
| Method | Description |
28
-
| ------ | ----------- |
29
-
| [`Items`](#items) | Get an array of `BarcodeResultItems`, which are the basic unit of the captured results. |
30
-
| [`RotationTransformMatrix`](#rotationtransformmatrix) | Get the rotation transformation matrix of the original image relative to the rotated image. |
31
-
| [`OriginalImageHashId`](#originalimagehashid) | Get the hash id of the source image. You can use this ID to get the source image via [`IntermediateResultManager`]({{ site.dcv_maui_api }}capture-vision-router/auxiliary-classes/intermediate-result-manager.html) class. |
32
-
| [`ErrorCode`](#errorcode) | Get the error code if an error occurs when processing the image. |
33
-
| [`ErrorMessage`](#errormessage) | Get the error message if an error occurs when processing the image. |
25
+
## Properties
26
+
27
+
| Property | Type | Description |
28
+
| -------- | ---- | ----------- |
29
+
| [`Items`](#items) | *List<BarcodeResultItem>* | Get an array of `BarcodeResultItems`, which are the basic unit of the captured results. |
30
+
| [`RotationTransformMatrix`](#rotationtransformmatrix) | *Matrix* | Get the rotation transformation matrix of the original image relative to the rotated image. |
31
+
| [`OriginalImageHashId`](#originalimagehashid) | *string* | Get the hash id of the source image. You can use this ID to get the source image via [`IntermediateResultManager`]({{ site.dcv_maui_api }}capture-vision-router/auxiliary-classes/intermediate-result-manager.html) class. |
32
+
| [`ErrorCode`](#errorcode) | *int* | Get the error code if an error occurs when processing the image. |
33
+
| [`ErrorMessage`](#errormessage) | *string* | Get the error message if an error occurs when processing the image. |
0 commit comments