Skip to content

Commit ea0d0dc

Browse files
committed
Update code examples according to v.26.2
1 parent e947255 commit ea0d0dc

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

net/developer-guide/advanced-usage/working-with-barcodes/extract-barcodes-from-document-page-area.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,29 @@ toc: true
1313
GroupDocs.Parser provides the functionality to extract barcodes from documents by the [GetBarcodes](https://reference.groupdocs.com/parser/net/groupdocs.parser.parser/getbarcodes/methods/1) method:
1414

1515
```csharp
16-
IEnumerable<PageBarcodeArea> GetBarcodes(PageAreaOptions options);
16+
IEnumerable<PageBarcodeArea> GetBarcodes(BarcodeOptions options);
1717
```
1818

1919
This method returns a collection of [PageBarcodeArea](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea) objects:
2020

2121
| Member | Description |
2222
| --- | --- |
23-
| [Page](https://reference.groupdocs.com/net/parser/groupdocs.parser.data/pagearea/properties/page) | The page that contains the text area. |
24-
| [Rectangle](https://reference.groupdocs.com/net/parser/groupdocs.parser.data/pagearea/properties/rectangle) | The rectangular area on the page that contains the text area. |
25-
| [Value](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea/properties/value) | A string value that represents a value of the barcode page area. |
26-
| [CodeTypeName](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea/properties/codetypename) | A string value than represents a type name of the barcode. |
27-
| [Confidence](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea/confidence/) | The level of confidence of the parsered barcode. |
28-
| [Angle](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea/angle/) | The angle of the barcode. |
23+
| [Page](https://reference.groupdocs.com/net/parser/groupdocs.parser.data.pagearea/properties/page) | The page that contains the text area. |
24+
| [Rectangle](https://reference.groupdocs.com/net/parser/groupdocs.parser.data.pagearea/properties/rectangle) | The rectangular area on the page that contains the text area. |
25+
| [Value](https://reference.groupdocs.com/parser/net/groupdocs.parser.data.pagebarcodearea/properties/value) | A string value that represents a value of the barcode page area. |
26+
| [CodeTypeName](https://reference.groupdocs.com/parser/net/groupdocs.parser.data.pagebarcodearea/properties/codetypename) | A string value than represents a type name of the barcode. |
27+
| [Confidence](https://reference.groupdocs.com/parser/net/groupdocs.parser.data.pagebarcodearea/confidence/) | The level of confidence of the parsered barcode. |
28+
| [Angle](https://reference.groupdocs.com/parser/net/groupdocs.parser.data.pagebarcodearea/angle/) | The angle of the barcode. |
2929

3030
Here are the steps to extract all barcodes from the whole document:
3131

3232
- Instantiate [Parser](https://reference.groupdocs.com/net/parser/groupdocs.parser/parser) object for the initial document;
3333
- Check if the document supports barcodes extraction;
3434
- Instantiate [BarcodeOptions](https://reference.groupdocs.com/net/parser/groupdocs.parser.options/BarcodeOptions) with the rectangular area;
35-
- Call [GetBarcodes](https://reference.groupdocs.com/parser/net/groupdocs.parser.parser/getbarcodes/methods/1) method and obtain collection of [PageBarcodeArea](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea) objects;
35+
- Call [GetBarcodes](https://reference.groupdocs.com/parser/net/groupdocs.parser.parser/getbarcodes/methods/1) method and obtain collection of [PageBarcodeArea](https://reference.groupdocs.com/parser/net/groupdocs.parser.data.pagebarcodearea) objects;
3636
- Iterate through the collection and get a barcode value.
3737

38-
The following example shows how to extract barcodes from the upper-right corner:
38+
The following example shows how to extract barcodes from the upperright corner:
3939

4040
```csharp
4141
// Create an instance of Parser class

0 commit comments

Comments
 (0)