We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46d3acb commit 262a47aCopy full SHA for 262a47a
1 file changed
Document-Processing/DataExtraction/SmartFormRecognizer/NET/working-with-recognize-option.md
@@ -86,10 +86,10 @@ recognizer.FormRecognizeOptions.ConfidenceThreshold = 0.9;
86
87
FormRecognizer recognizer = new FormRecognizer();
88
// Set a single page range – detects only the specified page
89
-recognizer.FormRecognizeOptions.PageRange = new int[,]{{ 3 }{ 8 }};
+recognizer.FormRecognizeOptions.PageRange = new int[,] { { 3 }, { 8 } };
90
91
// Set a page range – detects content between the specified start and end page
92
-recognizer.FormRecognizeOptions.PageRange = new int[,]{{ 3, 8 }};
+recognizer.FormRecognizeOptions.PageRange = new int[,] { { 3, 8 } };
93
94
{% endhighlight %}
95
{% endtabs %}
0 commit comments