CameraOptionsUI
CameraOptionsUI
CameraOptionsUI
CameraOptionsUI
Class
Definition
Provides a method for displaying a UI, by which the UI contains options for the capture of photos, audio recordings and videos.
public : static class CameraOptionsUIpublic static class CameraOptionsUIPublic Static Class CameraOptionsUI// You can use this class in JavaScript.
- Attributes
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Media.Capture.CameraCaptureUIContract (introduced v1)
|
| Capabilities |
webcam
microphone
|
Examples
The following example shows how to use this class to display the camera options.
function showWebcamSettings() {
var mediaCaptureMgr = new Windows.Media.Capture.MediaCapture();
Windows.Media.Capture.CameraOptionsUI.show(mediaCaptureMgr);
}
Remarks
This object is not instantiated directly. Simply use the static Show method to display the options.
Note
This API is in the Desktop device family which means it can only be used on devices that support that family. To use this API, you must add a reference to the Windows Desktop Extensions for the UWP to your app. For more information on device families, see Intro to the Universal Windows Platform.
Methods
Show(MediaCapture) Show(MediaCapture) Show(MediaCapture) Show(MediaCapture)
Displays a UI that contains options for the capture of photos, audio recordings and videos.
public : static void Show(MediaCapture mediaCapture)public static void Show(MediaCapture mediaCapture)Public Static Function Show(mediaCapture As MediaCapture) As void// You can use this method in JavaScript.
- mediaCapture
- MediaCapture MediaCapture MediaCapture MediaCapture
The MediaCapture object that provides methods for the capture of photos, audio recordings and videos.
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Media.Capture.CameraCaptureUIContract (introduced v1)
|
| Capabilities |
webcam
microphone
|