Posted 22 November 2018, 5:22 am EST
Hi, I wanted to print pdf silently. For that i am using componentone.
But when i am trying to access methos pritersetting of C1PrintOptions to set the printer name I am not able to access it.
My code is
C1PdfDocumentSource pds = new C1PdfDocumentSource();
pds.LoadFromFile(SourcefileName);
try
{
C1PrintOptions po = new C1PrintOptions();
po.printersetting // not able to see this method in context menu
} pds.Print(po);