Some test text!
Xamarin / Android
Platform
Documentation
There are two options to fill form fields. First is using a UI component that can edit or create form fields. Second is an API guide to programmatically fill form fields.
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: Support