Hi,
I am evaluating your product DynamicPDF Generator to meet few of my requirements.
I was reading the documenation for generating pdf in c# and was not able to find a way where I can send an xml input directly to an inbuild method of dynamicPDF.
The only link I found was this (SimpleXMLReport)
http://www.dynamicpdf.com/Products/DynamicPDFForNET/Generator/Examples.csp#GSimpleReport
where the xml elements are iterated and using new Label() the PageElements are created
while( reader.Read())
{
if(reader.NodeType == XmlNodeType.Element && reader.Name == "Products")
{
currentPage.Elements.Add( new Label( reader.GetAttribute( "ProductName" ), 2, currentY + 3, 236, 11,Font.TimesRoman, 11 ) );
}
}
Please let me know if we have a way (method exposed) where we can convert an xml to pdf directly.
Or do we have a specific xml structure which your product can use to generate a pdf.
Thank you.