 | PdfPageObjectScale(Single, Single, Boolean) Method |
Scale the page object by the specified scaling factors around the center of the page object.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic void Scale(
float sx,
float sy,
bool affectClippingPath = true
)
Public Sub Scale (
sx As Single,
sy As Single,
Optional affectClippingPath As Boolean = true
)
public:
void Scale(
float sx,
float sy,
bool affectClippingPath = true
)
member Scale :
sx : float32 *
sy : float32 *
?affectClippingPath : bool
(* Defaults:
let _affectClippingPath = defaultArg affectClippingPath true
*)
-> unit public void Scale(
float sx,
float sy,
boolean affectClippingPath = true
)
function Scale(sx, sy, affectClippingPath);
Parameters
- sx Single
- The horizontal scaling factor.
- sy Single
- The vertical scaling factor.
- affectClippingPath Boolean (Optional)
- A flag indicating that the transformation must also be applied to the clipping path.
See Also