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