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
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
3232The 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
4343Gets 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```
Original file line number Diff line number Diff 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; }
6464Returns 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
You can’t perform that action at this time.
0 commit comments