Did you find this guide helpful?
Some test text!
Xamarin / Guides
Interactive form filling for form fields such as text fields, checkboxes, radio buttons, dropdowns, signatures, etc. is supported by the Apryse Android SDK.
You can disable form field editing altogether by configuring ToolManager
using the ToolManagerBuilder
and disabling the FORM_FILL
:
// Create a custom ToolManager with disabled form field creation
ToolManager.ToolMode[] toolModes = { ToolManager.ToolMode.FormFill };
var tmBuilder = ToolManagerBuilder.From()
.DisableToolModes(toolModes);
// Add ToolManagerBuilder to your ViewerConfig
var config = new ViewerConfig.Builder()
.FullscreenModeEnabled(true)
.MultiTabEnabled(true)
// ...
.ToolManagerBuilder(tmBuilder)
.Build();
Get the answers you need: Chat with us