Skip to content

Commit 26b4d34

Browse files
Merge pull request #347 from dynamsoft-docs/preview
update to internal commit 744059e5
2 parents 07dd9a9 + dc9ab35 commit 26b4d34

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

_includes/sidelist-programming/programming-android.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<li lang="android" ><a href="{{ site.android }}user-guide/index.html" class="otherLinkColour">User Guide</a>
44
<ul lang="android" >
5-
<li lang="android" ><a href="{{ site.android }}user-guide.html" class="otherLinkColour">Build your first APP</a> </li>
6-
<li lang="android" ><a href="{{ site.android }}user-guide/configure-barcode-scanner.html" class="otherLinkColour">Configure Barcode Scanner</a>
5+
<li lang="android" ><a href="{{ site.android }}user-guide.html" class="otherLinkColour">Build your first APP</a></li>
6+
<li lang="android" ><a href="{{ site.android }}user-guide/configure-barcode-scanner.html" class="otherLinkColour">Configure Barcode Scanner</a></li>
77
<ul lang="android" >
88
<li lang="android" ><a href="{{ site.android }}user-guide/scanner-barcode-formats.html" class="otherLinkColour">Specify Barcode Format</a></li>
99
<li lang="android" ><a href="{{ site.android }}user-guide/scanner-multi-barcodes.html" class="otherLinkColour">Switch Single & Multiple Scanning Modes</a></li>

programming/maui/samples/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ noTitleIndex: true
1010
# Demo and Samples
1111

1212
- [Demo and Samples](#demo-and-samples)
13-
- [Demos](#demos)
14-
- [Barcode Decoding Samples](#barcode-decoding-samples)
13+
- [Demos](#demos)
14+
- [Barcode Decoding Samples](#barcode-decoding-samples)
1515
- [ScanBarcodes_FoundationalAPI](#scanbarcodes_foundationalapi)
1616
- [ScanBarcodes_ReadyToUseComponent](#scanbarcodes_readytousecomponent)
1717
- [ScanBarcodes_WithCameraEnhancer](#scanbarcodes_withcameraenhancer)

programming/maui/user-guide/configure-barcode-scanner.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ config.TemplateFile = "CustomizedTemplate.json";
3434

3535
## Configure the UI Elements
3636

37+
<div align="center">
38+
<p><img src="../../assets/barcode-scanner-ui.png" width="70%" alt="barcode-scanner"></p>
39+
<p>Barcode Scanner UI Components</p>
40+
</div>
41+
3742
- Close button: Stop Barcode scanning and go back to the previous activity.
3843
- Torch button: A clickable button that can turn on/off the torch.
3944

@@ -42,6 +47,8 @@ var config = new BarcodeScannerConfig("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9"
4247
config.IsTorchButtonVisible = true;
4348
config.IsGuideFrameVisible = true;
4449
config.IsCloseButtonVisible = true;
50+
var scanRegion = new DMRect(0.15f, 0.35f, 0.85f, 0.55f, true);
51+
config.ScanRegion = scanRegion;
4552
```
4653

4754
**Related APIs**

0 commit comments

Comments
 (0)