Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ core-enums: /capture-vision/docs/core/enums/core/
cvr-enums: /capture-vision/docs/core/enums/capture-vision-router/

dce_maui_api: /camera-enhancer/docs/mobile/programming/maui/api-reference/
dcv_maui_api: /capture-vision/docs/mobile/programming/maui/api-reference/

assets: /camera-enhancer/docs/mobile/assets/
edit_icon: /camera-enhancer/docs/mobile/assets/img-icon/edit-icon.png
Expand Down
4 changes: 2 additions & 2 deletions programming/maui/api-reference/camera-enhancer-v2.2.3000.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class CameraEnhancer : ImageSourceAdapter
| [`SetFocus`](#setfocus) | Set the focus point of interest and trigger an one-off auto-focus. After the focus, you can either lock the focalngth or keep the continuous auto focus enabled by configuring the subsequent focus mode. |
| [`GetFocusMode`](#getfocusmode) | Set the focus point of interest and trigger an one-off auto-focus. After the focus, you can either lock the focalngth or keep the continuous auto focus enabled by configuring the subsequent focus mode. |

The following methods are inherited from superclass [`ImageSourceAdapter`]({{ site.dcv_android_api }}core/image-source-adapter.html)
The following methods are inherited from superclass [`ImageSourceAdapter`]({{ site.dcv_maui_api }}core/image-source-adapter.html)

| Method | Description |
| ------ | ----------- |
Expand Down Expand Up @@ -131,7 +131,7 @@ DMRect GetScanRegion();

**Return Value**

A [`DMRect`]({{ site.dcv_android_api }}core/basic-structures/rect.html) object that represent the scan region area.
A [`DMRect`]({{ site.dcv_maui_api }}core/rect.html) object that represent the scan region area.

### EnableEnhancedFeatures

Expand Down
4 changes: 2 additions & 2 deletions programming/maui/api-reference/camera-enhancer.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class CameraEnhancer : ImageSourceAdapter
| [`TurnOnTorch`](#turnontorch) | Turn on the torch. |
| [`TurnOffTorch`](#turnofftorch) | Turn off the torch. |

The following methods are inherited from superclass [`ImageSourceAdapter`]({{ site.dcv_android_api }}core/image-source-adapter.html)
The following methods are inherited from superclass [`ImageSourceAdapter`]({{ site.dcv_maui_api }}core/image-source-adapter.html)

| Method | Description |
| ------ | ----------- |
Expand Down Expand Up @@ -133,7 +133,7 @@ DMRect GetScanRegion();

**Return Value**

A [`DMRect`]({{ site.dcv_android_api }}core/basic-structures/rect.html) object that represent the scan region area.
A [`DMRect`]({{ site.dcv_maui_api }}core/rect.html) object that represent the scan region area.

### EnableEnhancedFeatures

Expand Down
4 changes: 2 additions & 2 deletions programming/maui/api-reference/image-editor-view.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ImageEditorView : View
| Property | Type | Description |
|--------- | ---- |-------------|
| [`OriginalImage`](#originalimage) | *ImageData* | The original image that displayed on the view. |
| [`SelectedDrawingItem`](#selecteddrawingitem) | *DrawingItem* | The selected [`DrawingItem`](drawingitem.md) on the view. |
| [`SelectedDrawingItem`](#selecteddrawingitem) | *DrawingItem* | The selected [`DrawingItem`](drawing-item.html) on the view. |

### ImageEditorView

Expand Down Expand Up @@ -68,7 +68,7 @@ ImageData OriginalImage{ get; set; }

### SelectedDrawingItem

The selected [`DrawingItem`](drawingitem.md) on the view.
The selected [`DrawingItem`](drawing-item.html) on the view.

```csharp
DrawingItem SelectedDrawingItem { get; }
Expand Down