Skip to content

Commit 5957af4

Browse files
Merge pull request #47 from dynamsoft-docs/preview
update to internal commit 70eebcd9
2 parents fb25725 + 799fbcc commit 5957af4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

programming/maui/api-reference/recognized-text-lines-result.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class RecognizedTextLinesResult : CapturedResultBase
2727

2828
| Property | Type | Description |
2929
| -------- | ---- | ----------- |
30-
| [`Items`](#items) | *IList<TextLineResultItem>* | Gets the text line result item at the specified index. |
30+
| [`Items`](#items) | *TextLineResultItem[]* | Gets the text line result item at the specified index. |
3131

3232
The following properties are inherited from [`CapturedResultBase`]({{ site.dcv_maui_api }}core/captured-result-base.html):
3333

@@ -43,5 +43,5 @@ The following properties are inherited from [`CapturedResultBase`]({{ site.dcv_m
4343
Gets all the text line result(s) recognized from the image/frame in an array of [`DSTextLineResultItem`](text-line-result-item.md).
4444

4545
```csharp
46-
IList<TextLineResultItem> Items { get; }
46+
TextLineResultItem[]? Items { get; }
4747
```

programming/maui/api-reference/text-line-result-item.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class TextLineResultItem : CapturedResultItem
3232
| [`Text`](#text) | *String* | Returns the text content of the text line. |
3333
| [`Location`](#location) | *Quadrilateral* | Returns the location of the text line in the form of a quadrilateral. |
3434
| [`Confidence`](#confidence) | *int* | Returns the confidence of the text line recognition result. |
35-
| [`CharacterResults`](#characterresults) | *IList<CharacterResult>* | Get all the characters in the text line. Each character is represented by a [`CharacterResult`](character-result.html) object. |
35+
| [`CharacterResults`](#characterresults) | *CharacterResult[]* | Get all the characters in the text line. Each character is represented by a [`CharacterResult`](character-result.html) object. |
3636
| [`SpecificationName`](#specificationname) | *String* | Returns the name of the [`TextLineSpecification`]({{site.dcv_parameter_reference}}text-line-specification/) object that generated this `TextLineResultItem`. |
3737

3838
### Text
@@ -64,7 +64,7 @@ int Confidence { get; }
6464
Returns all the characters in the text line. Each character is represented by a [`CharacterResult`](character-result.md) object.
6565

6666
```csharp
67-
IList<CharacterResult> CharacterResults { get; }
67+
CharacterResult[] CharacterResults { get; }
6868
```
6969

7070
### SpecificationName

0 commit comments

Comments
 (0)