I am in the process of converting a Windows Mobile application to Xamarin Forms, specifically Android. In the Windows Mobile app, we create PDFs using PDF4NET and are able to add Keywords to the Document Information section of the PDF. In the convert to Xamarin Forms (android), I am unable to continue using PDF4NET but I did come across PrintedPdfDocument. It fits all the requirements so far except for adding Keywords to the Document Information.
I haven't been able to find anywhere in the documentation for PrintedPDFDocument yet about adding keywords and it doesn't look like the object has a property for document information. Is there a special way to do this, or is it not supported at all? I did come across XFINIUM and it is possible to do it with this product but I'm not sure if it's a viable option. Below is a sample of how it's done in XFINIUM since I can't post links yet:
document.DocumentInformation.Keywords = "xfinium.pdf,pdf,sample";
Thanks in advance!