This library allows you to easily and quickly add a form to any map which will display the Process Map for the Folder. This process Map includes:
Customization
The output can be customised in the following ways
For developers
The process information library comes with a standalone .NET 2 assembly that can be used in your own applications
to display images of Metastorm processes. See the screenshot to the right where the assembly has been used to show a
process image in a Windows application.
Usage is as simple as the following -
// read from an XEP file
MapImageGenerator gen = MapImageGenerator.FromFile(
@"C:\Procedures\Flight.xep", "Flight");
Bitmap img = gen.GetImage();
// read from the database
MapImageGenerator gen = MapImageGenerator.FromDatabase(
"connection string", "Flight", "folder ID");
Bitmap img = gen.GetImage();
View the documentation for developers