Type Conversion

Apryse type conversion allows you to call C functions directly from C#.

Managed type and binding types

Apryse for Xamarin SDK takes advantage of PInvoke which allows calling C functions from C# directly. This applies to all core classes that are shared between Xamarin.Android and Xamarin.iOS. However, the PDFViewCtrl class and PDFViewCtrlTools library are direct Xamarin bindings from the source code. This article will walk you through how to deal with managed type and binding types.

Key concepts:

  • All managed types are in pdftron namespace
  • All binding types are in pdftronprivate namespace

A TypeConvertHelper class is provided to convert between managed types and binding types. For example:

PDFDoc

From pdftronprivate.PDF.PDFDoc to pdftron.PDF.PDFDoc:

C#

1var pdfDoc = TypeConvertHelper.ConvPdfDocToManaged(privatePdfDoc);

From pdftron.PDF.PDFDoc to pdftronprivate.PDF.PDFDoc:

C#

1var privatePdfDoc = TypeConvertHelper.ConvPDFDocToNative(pdfDoc);

Annot

From pdftronprivate.PDF.Annot to pdftron.PDF.Annot:

C#

1var annot = TypeConvertHelper.ConvAnnotToManaged(privateAnnot);

From pdftron.PDF.Annot to pdftronprivate.PDF.Annot:

C#

1var privateAnnot = TypeConvertHelper.ConvAnnotToNative(annot);

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales