MatrixGetAngle Method
Transaltes rotation into angle (degrees)

Namespace: Aspose.Pdf
Assembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntax
public static double GetAngle(
	Rotation rotation
)

Parameters

rotation
Type: Aspose.PdfRotation
Rotation value.

Return Value

Type: Double
Angle value.
Examples
C#
double angle = Matrix.GetAngle(Rotation.on90);
Matrix m = Matrix.Rotation(angle);
See Also