 | PdfiumFPDFShadingType1_SetMatrix Method |
Set a transformation matrix mapping the coordinate space specified by the shading's domain into the shading’s target coordinate space.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFShadingType1_SetMatrix(
IntPtr shadding_pattern,
float a,
float b,
float c,
float d,
float e,
float f
)
Public Shared Function FPDFShadingType1_SetMatrix (
shadding_pattern As IntPtr,
a As Single,
b As Single,
c As Single,
d As Single,
e As Single,
f As Single
) As Boolean
public:
static bool FPDFShadingType1_SetMatrix(
IntPtr shadding_pattern,
float a,
float b,
float c,
float d,
float e,
float f
)
static member FPDFShadingType1_SetMatrix :
shadding_pattern : IntPtr *
a : float32 *
b : float32 *
c : float32 *
d : float32 *
e : float32 *
f : float32 -> bool
public static boolean FPDFShadingType1_SetMatrix(
IntPtr shadding_pattern,
float a,
float b,
float c,
float d,
float e,
float f
)
Patagames.Pdf.Pdfium.FPDFShadingType1_SetMatrix = function(shadding_pattern, a, b, c, d, e, f);
Parameters
- shadding_pattern IntPtr
- The handle to the shading pattern.
- a Single
- The coefficient "a" of the matrix.
- b Single
- The coefficient "b" of the matrix.
- c Single
- The coefficient "c" of the matrix.
- d Single
- The coefficient "d" of the matrix.
- e Single
- The coefficient "e" of the matrix.
- f Single
- The coefficient "f" of the matrix.
Return Value
BooleanTrue for successful; false if any error has occurred.
Remarks
See Also