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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ class BarcodeResultItem extends CapturedResultItem
36
36
| [`ModuleSize`](#modulesize) | *int* | Get the module size of the barcode. |
37
37
| [`IsDPM`](#isdpm) | *bool* | Check whether the barcode is a DPM barcode. |
38
38
| [`IsMirrored`](#ismirrored) | *bool* | Check whether the barcode is mirrored. |
39
-
| [`ECISegments`](#ecisegments) | *IList<ECISegment\>?* | The ECI segments of the decoded barcode. |
39
+
| [`ECISegments`](#ecisegments) | *ECISegment[]?* | The ECI segments of the decoded barcode. |
40
40
41
41
The following properties are inherited from class [`CapturedResultItem`]({{ site.dcvb_maui_api }}core/captured-result-item.html).
42
42
@@ -131,7 +131,7 @@ bool IsMirrored { get; }
131
131
The Extended Channel Interpretation (ECI) segments of the decoded barcode. Each ECI segment specifies the character encoding used for a portion of the decoded bytes.
Copy file name to clipboardExpand all lines: programming/maui/api-reference/eci-segment.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,29 +36,29 @@ class ECISegment
36
36
The ECI assignment number as defined by ISO/IEC 15424. This value identifies the character set encoding used in this segment.
37
37
38
38
```csharp
39
-
int EciValue { get; set; }
39
+
int EciValue { get; }
40
40
```
41
41
42
42
### CharsetEncoding
43
43
44
44
The charset encoding name defined by IANA (e.g. "UTF-8", "ISO-8859-1"). This specifies the character encoding scheme used to interpret the bytes in this segment.
45
45
46
46
```csharp
47
-
stringCharsetEncoding { get; set; }
47
+
stringCharsetEncoding { get; }
48
48
```
49
49
50
50
### StartIndex
51
51
52
52
The start index of this ECI segment in the decoded barcode bytes. This indicates the position where this segment begins within the overall decoded byte sequence.
53
53
54
54
```csharp
55
-
intStartIndex { get; set; }
55
+
intStartIndex { get; }
56
56
```
57
57
58
58
### Length
59
59
60
60
The length (in bytes) of this segment within the decoded barcode bytes. This specifies how many bytes in the decoded data belong to this ECI segment.
Copy file name to clipboardExpand all lines: programming/maui/user-guide.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ noTitleIndex: true
60
60
61
61
### Visual Studio for Mac
62
62
63
-
In the **NuGet Package Manager>Manage Packages for Solution** of your project, search for **Dynamsoft.BarcodeReaderBundle.Maui**. Select Version **11.2.5000** and click **install**.
63
+
In the **NuGet Package Manager>Manage Packages for Solution** of your project, search for **Dynamsoft.BarcodeReaderBundle.Maui**. Select Version **11.4.1200** and click **install**.
64
64
65
65
### Visual Studio for Windows
66
66
@@ -73,7 +73,7 @@ You need to add the library via the project file and complete additional steps f
0 commit comments