MobbSign Advanced features
Customization
The PDF Viewer can be customizable for adapt it to the look&feel of the client application. You can hide or show the top and bottom bars, change their background colours, etc. using a customization dictionary or class if we talk to Android platform:
For activating the biometric signature acquisition / drawing.
public void SignDocument()
For actually signing the PDF document using the previously acquired biometric signature.
public async Task StampDocument()
For deleting the previously acquired biometric signature.
public void DeleteSignature()
For triggering the end of the process, once the document has been finished.
public async void EndProcess()
For going to the next page of the document.
public bool GoToNextPage()
For going to the previous page of the document.
public bool GoToPreviousPage()
For going to the first page of the document.
public bool GoToFirstPage()
For going to the last page of the document.
public bool GoToLastPage()
For zoom in the document.
public void ZoomIn()
For zoom out the document.
public void ZoomOut()
For saving changes on an editable document.
public async void SaveForms();