Optional source: DeepPartial<AcknowledgementScreenConfiguration>Determines, after each page is snapped, whether the acknowledgment screen should be displayed or not.
"ALWAYS";
The background color of the acknowledgement screen.
"?sbColorOutline";
Configuration of the bottom bar for the acknowledgement screen.
new AcknowledgementBottomBar({});
Configuration for warning display when document is not found.
new AcknowledgementDocumentQualityWarning({
"visible": true,
"title": new StyledText({
"text": "?acknowledgementWarningDocumentNotFound"
}),
"background": new BackgroundStyle({
"strokeColor": "?sbColorNegative",
"fillColor": "?sbColorNegative",
"strokeWidth": 0.0
}),
"icon": new IconStyle({
"color": "?sbColorOnPrimary"
})
});
Configuration of the title, located in the top bar.
new StyledText({
"visible": false,
"text": "?acknowledgementTitle",
"color": "?sbColorOnPrimary"
});
Configuration for warning display when document quality is unacceptable.
new AcknowledgementDocumentQualityWarning({
"visible": true,
"title": new StyledText({
"text": "?acknowledgementWarningUnacceptableQuality"
}),
"background": new BackgroundStyle({
"strokeColor": "?sbColorNegative",
"fillColor": "?sbColorNegative",
"strokeWidth": 0.0
}),
"icon": new IconStyle({
"color": "?sbColorOnPrimary"
})
});
Configuration for warning display when document quality is uncertain.
new AcknowledgementDocumentQualityWarning({
"visible": true,
"title": new StyledText({
"text": "?acknowledgementWarningUncertainQuality"
}),
"background": new BackgroundStyle({
"strokeColor": "?sbColorNegative",
"fillColor": "?sbColorNegative",
"strokeWidth": 0.0
}),
"icon": new IconStyle({
"color": "?sbColorOnPrimary"
})
});
Generated using TypeDoc
Configuration of the acknowledgement screen.