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