Did you find this guide helpful?
Some test text!
Xamarin / Guides / Set tool mode
You can set the current tool using the UI components as well as programmatically.
When setting up the ToolManager, the default Tool is the Pan Tool.
To change the tool, use ToolManager.setTool(ToolManager.Tool) API.
mToolManager.Tool = mToolManager.CreateTool(ToolManager.ToolMode.TextHighlight, mToolManager.Tool);To continuously using the same tool, do:
var tool = mToolManager.CreateTool(ToolManager.ToolMode.TextHighlight, mToolManager.Tool);
((Tool) tool).ForceSameNextToolMode = true;
mToolManager.Tool = tool;Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales