 | PdfiumFPDFMatrix_Translate(FS_MATRIX, Int32, Int32, Boolean) Method |
Applies the specified translation vector to the Matrix in the specified order.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFMatrix_Translate(
FS_MATRIX dst,
int x,
int y,
bool bPrepended = false
)
Public Shared Sub FPDFMatrix_Translate (
dst As FS_MATRIX,
x As Integer,
y As Integer,
Optional bPrepended As Boolean = false
)
public:
static void FPDFMatrix_Translate(
FS_MATRIX^ dst,
int x,
int y,
bool bPrepended = false
)
static member FPDFMatrix_Translate :
dst : FS_MATRIX *
x : int *
y : int *
?bPrepended : bool
(* Defaults:
let _bPrepended = defaultArg bPrepended false
*)
-> unit
public static void FPDFMatrix_Translate(
FS_MATRIX dst,
int x,
int y,
boolean bPrepended = false
)
Patagames.Pdf.Pdfium.FPDFMatrix_Translate = function(dst, x, y, bPrepended);
Parameters
- dst FS_MATRIX
- The matrix
- x Int32
- The x value by which to translate this Matrix.
- y Int32
- The y value by which to translate this Matrix.
- bPrepended Boolean (Optional)
- Specifies the order (append or prepend) in which the translation is applied to the Matrix.
See Also