Some test text!
Xamarin / Android
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();
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales