How to Access Tags through .NET API Call?
This Article outlines how to extract tag data from a report object in the Windward .NET Engine using Report.getTagTree() API call
This functionality was added in version 20.0.0
In order to get the xml tag tree, use the following method:
using (FileStream output_file = new FileStream("[PATH TO XML OUTPUT FILE]", FileMode.OpenOrCreate))
{
Report.GetTagTree(input_template, output_file, license_key);
}
The input templates must be one of the following:
- .docx
- .xlsx
- .pptx
0 Comments
Add your comment