PdfMatrixMultiply Operator |
Premultiplies the
PdfMatrix representing the additional transformation with the
PdfMatrix representing the existing transformation, thus producing the
PdfMatrix representing the combined transformation.
Namespace: SautinSoft.Pdf.ContentAssembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2026.7.1
Syntaxpublic static PdfMatrix operator *(
PdfMatrix additionalTransform,
PdfMatrix existingTransform
)
Public Shared Operator * (
additionalTransform As PdfMatrix,
existingTransform As PdfMatrix
) As PdfMatrix
Parameters
- additionalTransform PdfMatrix
- The additional transformation.
- existingTransform PdfMatrix
- The existing transformation.
Return Value
PdfMatrix
The combined transformation composed of the
existingTransform and the
additionalTransform.
See Also