Apply the specified Shear vector (shearX and shearY) by the specified order.

Namespace: Spire.Pdf.Graphics
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public void Shear(
	float shearX,
	float shearY,
	PdfMatrixOrder order
)
Public Sub Shear ( 
	shearX As Single,
	shearY As Single,
	order As PdfMatrixOrder
)
public:
void Shear(
	float shearX, 
	float shearY, 
	PdfMatrixOrder order
)
member Shear : 
        shearX : float32 * 
        shearY : float32 * 
        order : PdfMatrixOrder -> unit 

Parameters

shearX
Single
The horizontal shear factor.
shearY
Single
The vertical shear factor.
order
PdfMatrixOrder
Represent the applying order.

See Also