MRZScannerConfig
MRZScannerConfig is the class that defines the configurations for MRZ scanning. It is via the input value of MRZScannerActivity.ResultContract
Definition
Assembly: Dynamsoft.MRZScannerBundle.Maui
Namespace: Dynamsoft.MRZScannerBundle.Maui
final class MRZScannerConfig
Properties
| Property | Type | Description |
|---|---|---|
License |
string | Represents the license string. |
TemplateFile |
string | Represents the template with a file path or a JSON string. |
DocumentType |
EnumDocumentType | Represents the type of document to scan, such as ID cards or passports. |
IsTorchButtonVisible |
bool | Represents the visibility status of the torch button. |
IsBeepEnabled |
bool | Represents the play status of the beep sound when a MRZ is scanned. |
IsCloseButtonVisible |
bool | Represents the visibility status of the close button. |
IsGuideFrameVisible |
bool | Represents the visibility status of the guide frame on the display. |
IsCameraToggleButtonVisible |
bool | Represents the visibility status of the camera toggle button. |
License
Represents the license string.
string License { get; set; };
TemplateFile
Represents the template with a file path or a JSON string.
string? TemplateFile { get; set; };
DocumentType
Represents the type of document to scan, such as ID cards or passports.
EnumDocumentType DocumentType { get; set; };
IsTorchButtonVisible
Represents the visibility status of the torch button.
bool IsTorchButtonVisible { get; set; };
IsBeepEnabled
Represents the play status of the beep sound when a MRZ is scanned.
bool IsBeepEnabled { get; set; };
IsCloseButtonVisible
Represents the visibility status of the close button.
bool IsCloseButtonVisible { get; set; };
IsGuideFrameVisible
Represents the visibility status of the guide frame on the display.
bool IsGuideFrameVisible { get; set; };
IsCameraToggleButtonVisible
Represents the visibility status of the camera toggle button.
bool IsCameraToggleButtonVisible { get; set; };