Did you find this guide helpful?
Some test text!
Xamarin / Guides / Print a document
Apryse SDK supports printing.
The library handles all the hard work, you simply have to tell it to show the system print dialog with a document. This can be done with Print.StartPrintJob
. Here is how:
void handlePrintJob(Activity activity, bool isRtl,
bool printDocument,
bool printDocumentWithAnnotations,
bool printDocumentWithAnnotationSummary)
{
var printContent = 0;
if (printDocument)
{
printContent |= Print.PrintContent.DocumentBit;
}
if (printDocumentWithAnnotations)
{
printContent |= Print.PrintContent.AnnotationBit;
}
if (printDocumentWithAnnotationSummary)
{
printContent |= Print.PrintContent.SummaryBit;
}
Print.StartPrintJob(activity, activity.GetString(Resource.String.app_name), mPdfDoc, (int)printContent, isRtl);
}
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales