Skip to content

Commit 30015bd

Browse files
Added the changes
1 parent 2898b6a commit 30015bd

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Document-Processing/Data-Extraction/Smart-Data-Extractor/NET/Features.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ using (FileStream inputStream = new FileStream("Input.pdf", FileMode.Open, FileA
189189

190190
{% endtabs %}
191191

192-
## Extract Form Data as JSON
192+
## Extract Data as JSON
193193

194194
To extract form fields across a PDF document using the **ExtractDataAsJson** method of the **DataExtractor** class with form recognition options, refer to the following code example:
195195

@@ -210,7 +210,7 @@ using (FileStream stream = new FileStream("Input.pdf", FileMode.Open, FileAccess
210210

211211
//Enable form detection in the document.
212212
extractor.EnableFormDetection = true;
213-
extractor.EnableTableDetection = false;
213+
extractor.EnableTableDetection = true;
214214
//Set confidence threshold for extraction.
215215
extractor.ConfidenceThreshold = 0.6
216216
//Configure form recognition options.
@@ -277,7 +277,7 @@ using (FileStream stream = new FileStream("Input.pdf", FileMode.Open, FileAccess
277277

278278
{% endtabs %}
279279

280-
## Extract Form Data as PDF
280+
## Enable Form Detection
281281

282282
To extract form fields across a PDF document and save them as a PDF output using the **ExtractDataAsPdfDocument** method of the **DataExtractor** class with form recognition options, refer to the following code example:
283283

@@ -379,7 +379,7 @@ using (FileStream stream = new FileStream("Input.pdf", FileMode.Open, FileAccess
379379

380380
{% endtabs %}
381381

382-
## Extract Table Data as PDF
382+
## Enable Table Detection
383383

384384
To extract tables across a PDF document and save them as a PDF output using the **ExtractDataAsPdfDocument** method of the **DataExtractor** class with table extraction options, refer to the following code example:
385385

Document-Processing/Data-Extraction/Smart-Data-Extractor/NET/NuGet-Packages-Required.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords: Assemblies
88
---
99
# NuGet Packages Required for Smart Data Extractor
1010

11-
## Extract data from PDF and image documents
11+
## Extract Structured data from PDF
1212

1313
To work with Smart Data Extractor, the following NuGet packages need to be installed in your application.
1414

Document-Processing/Data-Extraction/Smart-Table-Extractor/NET/NuGet-Packages-Required.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords: Assemblies
88
---
99
# NuGet Packages Required for Smart Table Extractor
1010

11-
## Extract data from PDF and image documents
11+
## Extract Structured data from PDF
1212

1313
To work with Smart Table Extractor, the following NuGet packages need to be installed in your application.
1414

0 commit comments

Comments
 (0)