Some test text!
Xamarin / Guides / Type conversion
Apryse type conversion allows you to call C functions directly from C#.
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:
pdftron namespacepdftronprivate namespaceA TypeConvertHelper class is provided to convert between managed types and binding types. For example:
From pdftronprivate.PDF.PDFDoc to pdftron.PDF.PDFDoc:
var pdfDoc = TypeConvertHelper.ConvPdfDocToManaged(privatePdfDoc);From pdftron.PDF.PDFDoc to pdftronprivate.PDF.PDFDoc:
var privatePdfDoc = TypeConvertHelper.ConvPDFDocToNative(pdfDoc);From pdftronprivate.PDF.Annot to pdftron.PDF.Annot:
var annot = TypeConvertHelper.ConvAnnotToManaged(privateAnnot);From pdftron.PDF.Annot to pdftronprivate.PDF.Annot:
var privateAnnot = TypeConvertHelper.ConvAnnotToNative(annot);Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales