public virtual RectangleF BoxRectForPage(CGPDFBox boxType, uint page, out NSError error) { unsafe { IntPtr val; IntPtr val_addr = (IntPtr)((IntPtr*)&val); RectangleF ret = _BoxRectForPage (boxType, page, val_addr); error = (NSError)Runtime.GetNSObject (val); return ret; } }
public PSPDFTextParser(CGPDFPage pageRef, uint page, PSPDFDocument document, NSMutableDictionary fontCache, bool hideGlyphsOutsidePageRect, CGPDFBox PDFBox) : this(pageRef.Handle, page, document, fontCache, hideGlyphsOutsidePageRect, PDFBox) { }
extern static CGAffineTransform CGPDFPageGetDrawingTransform(/* CGPDFPageRef */ IntPtr page, CGPDFBox box, CGRect rect, int rotate, bool preserveAspectRatio);
public CGAffineTransform GetDrawingTransform(CGPDFBox box, CGRect rect, int rotate, bool preserveAspectRatio) { return(CGPDFPageGetDrawingTransform(handle, box, rect, rotate, preserveAspectRatio)); }
public CGRect GetBoxRect(CGPDFBox box) { return(CGPDFPageGetBoxRect(handle, box)); }
extern static CGAffineTransform CGPDFPageGetDrawingTransform(IntPtr handle, CGPDFBox box, CGRect rect, int rotate, int preserveAspectRatio);
static extern CGAffineTransform CGPDFPageGetDrawingTransform(IntPtr handle, CGPDFBox box, RectangleF rect, int rotate, int preserveAspectRatio);
extern static RectangleF CGPDFPageGetBoxRect(IntPtr handle, CGPDFBox box);
public RectangleF GetBoxRect(CGPDFBox box) { return(CGPDFPageGetBoxRect(handle, box)); }
static extern CGAffineTransform CGPDFPageGetDrawingTransform(/* CGPDFPageRef */ IntPtr page, CGPDFBox box, CGRect rect, int rotate, bool preserveAspectRatio);
static extern CGRect CGPDFPageGetBoxRect(/* CGPDFPageRef */ IntPtr page, CGPDFBox box);
public CGRect GetBoxRect(CGPDFBox box) { return CGPDFPageGetBoxRect (handle, box); }
public CGAffineTransform GetDrawingTransform(CGPDFBox box, RectangleF rect, int rotate, bool preserveAspectRatio) { return CGPDFPageGetDrawingTransform (handle, box, rect, rotate, preserveAspectRatio ? 1 : 0); }
extern static CGRect CGPDFPageGetBoxRect(IntPtr handle, CGPDFBox box);
static extern RectangleF CGPDFPageGetBoxRect(IntPtr handle, CGPDFBox box);
extern static CGRect CGPDFPageGetBoxRect(/* CGPDFPageRef */ IntPtr page, CGPDFBox box);
public RectangleF GetBoxRect(CGPDFBox box) { return CGPDFPageGetBoxRect (handle, box); }
extern static CGAffineTransform CGPDFPageGetDrawingTransform(/* CGPDFPageRef */ IntPtr page, CGPDFBox box, CGRect rect, int rotate, [MarshalAs(UnmanagedType.I1)] bool preserveAspectRatio);