 | PdfiumSetWorldTransform Method |
The SetWorldTransform function sets a two-dimensional linear transformation between world space and page space for the specified device context. This transformation can be used to scale, rotate, shear, or translate graphics output.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void SetWorldTransform(
IntPtr hdc,
FS_MATRIX pMatrix
)
Public Shared Sub SetWorldTransform (
hdc As IntPtr,
pMatrix As FS_MATRIX
)
public:
static void SetWorldTransform(
IntPtr hdc,
FS_MATRIX^ pMatrix
)
static member SetWorldTransform :
hdc : IntPtr *
pMatrix : FS_MATRIX -> unit
public static void SetWorldTransform(
IntPtr hdc,
FS_MATRIX pMatrix
)
Patagames.Pdf.Pdfium.SetWorldTransform = function(hdc, pMatrix);
Parameters
- hdc IntPtr
- A handle to the device context.
- pMatrix FS_MATRIX
- A pointer to an FS_MATRIX structure that contains the transformation data.
See Also