 | PdfPageObjectTranslate Method |
Move the page object by the specified distance.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic void Translate(
float dx,
float dy,
bool affectClippingPath = true
)
Public Sub Translate (
dx As Single,
dy As Single,
Optional affectClippingPath As Boolean = true
)
public:
void Translate(
float dx,
float dy,
bool affectClippingPath = true
)
member Translate :
dx : float32 *
dy : float32 *
?affectClippingPath : bool
(* Defaults:
let _affectClippingPath = defaultArg affectClippingPath true
*)
-> unit public void Translate(
float dx,
float dy,
boolean affectClippingPath = true
)
function Translate(dx, dy, affectClippingPath);
Parameters
- dx Single
- Specifies the x-axis distance, in user space units, that the page object should be moved.
- dy Single
- Specifies the y-axis distance, in user space units, that the page object should be moved.
- affectClippingPath Boolean (Optional)
- A flag indicating that the transformation must also be applied to the clipping path.
See Also