CameraToggleButton
The CameraToggleButton class defines a camera toggle button with its location, size and image.
Definition
Namespace: Dynamsoft.CameraEnhancer.Maui
Assembly: Dynamsoft.CameraEnhancer.Maui
class CameraToggleButton
Properties & Methods
| Property | Type | Description |
|---|---|---|
X |
double | The x-coordinate of the camera toggle button. |
Y |
double | The y-coordinate of the camera toggle button. |
Width |
double | The width of the camera toggle button. |
Height |
double | The height of the camera toggle button. |
CameraToggleImageSource |
ImageSource | The image source of the camera toggle button. |
| Method | Description |
|---|---|
CameraToggleButton |
The constructors. |
X
The x-coordinate of the camera toggle button.
double X { get; set; }
Y
The y-coordinate of the camera toggle button.
double Y { get; set; }
Width
The width of the camera toggle button.
double Width { get; set; }
Height
The height of the camera toggle button.
double Height { get; set; }
CameraToggleImageSource
The image source of the camera toggle button.
ImageSource? CameraToggleImageSource { get; set; }
CameraToggleButton
The constructors.
CameraToggleButton();
CameraToggleButton(double x, double y, double width, double height, ImageSource? cameraToggleImageSource);