Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Team,
We need help on exporting qliksense stories as PDF using "Qlik Sense .NET SDK". We have created Qliksense report with a stories.
By using "Qlik Sense .NET SDK", we are able to get the Qliksense stories.
Could you please advice how to export the qliksense story as PDF using "Qlik Sense .NET SDK"? We tried the below code snippet to get all the stories from the App.
IStoryList listOfStories = app.GetStoryList();
foreach (var item in listOfStories.Items)
{
Console.WriteLine(item.Info.Id);
}
Regards
Suresh
The .NET SDK communicates with the engine service. Printing is done by another service in the Qlik System (the printing service...). So unfortunately there is no way to to do printing from the .NET SDK, and the APIs for the printing service are not public. You could try to reverse engineer that API by looking at the requests that the browser sends, but I'm afraid I would not recommend building a solution based on that...