 | FS_MATRIXTranslate(Int32, Int32, Boolean) Method |
Applies the specified translation vector to this Matrix in the specified order.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic void Translate(
int x,
int y,
bool prepended = false
)
Public Sub Translate (
x As Integer,
y As Integer,
Optional prepended As Boolean = false
)
public:
void Translate(
int x,
int y,
bool prepended = false
)
member Translate :
x : int *
y : int *
?prepended : bool
(* Defaults:
let _prepended = defaultArg prepended false
*)
-> unit public void Translate(
int x,
int y,
boolean prepended = false
)
function Translate(x, y, prepended);
Parameters
- x Int32
- The x value by which to translate this Matrix.
- y Int32
- The y value by which to translate this Matrix.
- prepended Boolean (Optional)
- Specifies the order (append or prepend) in which the translation is applied to this Matrix.
See Also