Class RotateTransform

Definition

Namespace:
Tizen.Multimedia.Util
Assembly:
Tizen.Multimedia.Util.dll
API Level:
4

Rotates an image.

C#
Copy
public class RotateTransform : ImageTransform
Inheritance
System.Object
RotateTransform

Constructors

View Source

RotateTransform(Rotation)

Initializes a new instance of the RotateTransform class.

Declaration
C#
Copy
public RotateTransform(Rotation rotation)
Parameters
Type Name Description
Rotation rotation

The value how to rotate an image.

Exceptions
Type Condition
System.ArgumentException

rotation is invalid.

System.ArgumentOutOfRangeException

rotation is Rotate90.

API Level: 4

Properties

View Source

Rotation

Gets or sets the value how to rotate an image.

Declaration
C#
Copy
public Rotation Rotation { get; set; }
Property Value
Type Description
Rotation
Exceptions
Type Condition
System.ArgumentException

value is invalid.

System.ArgumentOutOfRangeException

value is Rotate90.

API Level: 4

See Also