Adding new functionality through plugins
Contents
[
Hide
]
Aspose.OMR for .NET functionality can be extended by incorporating additional features provided through a plugin.
Aspose.OMR for .NET plugins are provided as NuGet packages. Refer to installation instructions to learn system requirements and prerequisites.
Activating a plugin
To activate features provided through a plugin, use Aspose.OMR.Api.OmrEngine.AddPlugin()
method:
var engine = new OmrEngine();
engine.AddPlugin(new HandwritingPlugin());