 | PdfiumFPDFPage_TransFormWithClip Method |
Transform the whole page with a specified matrix, then clip the page content region.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFPage_TransFormWithClip(
IntPtr page,
FS_MATRIX matrix,
FS_RECTF clip_rect
)
Public Shared Function FPDFPage_TransFormWithClip (
page As IntPtr,
matrix As FS_MATRIX,
clip_rect As FS_RECTF
) As Boolean
public:
static bool FPDFPage_TransFormWithClip(
IntPtr page,
FS_MATRIX^ matrix,
FS_RECTF clip_rect
)
static member FPDFPage_TransFormWithClip :
page : IntPtr *
matrix : FS_MATRIX *
clip_rect : FS_RECTF -> bool
public static boolean FPDFPage_TransFormWithClip(
IntPtr page,
FS_MATRIX matrix,
FS_RECTF clip_rect
)
Patagames.Pdf.Pdfium.FPDFPage_TransFormWithClip = function(page, matrix, clip_rect);
Parameters
- page IntPtr
- A page handle. Returned by FPDF_LoadPage(IntPtr, Int32) function
- matrix FS_MATRIX
- The transform matrix
- clip_rect FS_RECTF
- A rectangle page area to be clipped
Return Value
BooleanTrue if success,else false
RemarksThis function will transform the whole page, and would take effect to all the objects in the page.
See Also