File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
programming/maui/api-reference Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class RecognizedTextLinesResult : CapturedResultBase
27
27
28
28
| Property | Type | Description |
29
29
| -------- | ---- | ----------- |
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 . |
31
31
32
32
The following properties are inherited from [`CapturedResultBase`]({{ site .dcv_maui_api }}core /captured -result -base .html ):
33
33
@@ -43,5 +43,5 @@ The following properties are inherited from [`CapturedResultBase`]({{ site.dcv_m
43
43
Gets all the text line result (s ) recognized from the image /frame in an array of [`DSTextLineResultItem`](text -line -result -item .md ).
44
44
45
45
```csharp
46
- IList < TextLineResultItem > Items { get; }
46
+ TextLineResultItem []? Items { get; }
47
47
```
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public class TextLineResultItem : CapturedResultItem
32
32
| [`Text`](#text ) | *String * | Returns the text content of the text line . |
33
33
| [`Location`](#location ) | *Quadrilateral * | Returns the location of the text line in the form of a quadrilateral . |
34
34
| [`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 . |
36
36
| [`SpecificationName`](#specificationname ) | *String * | Returns the name of the [`TextLineSpecification`]({{site .dcv_parameter_reference }}text -line -specification /) object that generated this `TextLineResultItem `. |
37
37
38
38
### Text
@@ -64,7 +64,7 @@ int Confidence { get; }
64
64
Returns all the characters in the text line. Each character is represented by a [ ` CharacterResult ` ] ( character-result.md ) object.
65
65
66
66
``` csharp
67
- IList < CharacterResult > CharacterResults { get ; }
67
+ CharacterResult [] CharacterResults { get ; }
68
68
```
69
69
70
70
### SpecificationName
You can’t perform that action at this time.
0 commit comments