 | PdfiumFPDFMatrix_Scale Method |
Applies the specified scale vector (sx and sy) to the specified Matrix using the specified order.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFMatrix_Scale(
FS_MATRIX dst,
float sx,
float sy,
bool bPrepended = false
)
Public Shared Sub FPDFMatrix_Scale (
dst As FS_MATRIX,
sx As Single,
sy As Single,
Optional bPrepended As Boolean = false
)
public:
static void FPDFMatrix_Scale(
FS_MATRIX^ dst,
float sx,
float sy,
bool bPrepended = false
)
static member FPDFMatrix_Scale :
dst : FS_MATRIX *
sx : float32 *
sy : float32 *
?bPrepended : bool
(* Defaults:
let _bPrepended = defaultArg bPrepended false
*)
-> unit
public static void FPDFMatrix_Scale(
FS_MATRIX dst,
float sx,
float sy,
boolean bPrepended = false
)
Patagames.Pdf.Pdfium.FPDFMatrix_Scale = function(dst, sx, sy, bPrepended);
Parameters
- dst FS_MATRIX
- The matrix
- sx Single
- The value by which to scale this Matrix in the x-axis direction.
- sy Single
- The value by which to scale this Matrix in the y-axis direction.
- bPrepended Boolean (Optional)
- Specifies the order (append or prepend) in which the scale vector is applied to the Matrix.
See Also