Signature Toolbar
Show or Hide Toolbar
You can control the visibility of the bottom toolbar in signature mode by configuring CPDFConfiguration
.
tsx
let config = ComPDFKit.getDefaultConfig({
toolbarConfig: {
signatureToolbarVisible: false // or true to show the toolbar
}
});
1
2
3
4
5
2
3
4
5