 | PdfImageObjectSetMatrix Method |
Note: This API is now obsolete.
This property is obsolete. Please use
Matrix property instead.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax[ObsoleteAttribute("This method is obsolete. Please use Matrix property instead.",
false)]
public void SetMatrix(
float a,
float b,
float c,
float d,
float e,
float f
)
<ObsoleteAttribute("This method is obsolete. Please use Matrix property instead.",
false)>
Public Sub SetMatrix (
a As Single,
b As Single,
c As Single,
d As Single,
e As Single,
f As Single
)
public:
[ObsoleteAttribute(L"This method is obsolete. Please use Matrix property instead.",
false)]
void SetMatrix(
float a,
float b,
float c,
float d,
float e,
float f
)
[<ObsoleteAttribute("This method is obsolete. Please use Matrix property instead.",
false)>]
member SetMatrix :
a : float32 *
b : float32 *
c : float32 *
d : float32 *
e : float32 *
f : float32 -> unit
/** @attribute ObsoleteAttribute("This method is obsolete. Please use Matrix property instead.",
false) */
public void SetMatrix(
float a,
float b,
float c,
float d,
float e,
float f
)
function SetMatrix(a, b, c, d, e, f);
Parameters
- 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
See Also