Rotates about the specified origin point. The angle is in radians. The origin can be in a different spatial reference than the geometry being rotated.
[Visual Basic 6.0] Sub Rotate(
ByVal Origin As IPoint, _
ByVal RotationAngle As Double _
) As Empty
[Visual Basic .NET] Public Sub Rotate ( ByVal Origin As IPoint, _ ByVal RotationAngle As Double _ )
[C#] public void Rotate ( IPoint Origin, double RotationAngle );
[C++] public: void Rotate ( IPoint Origin, double RotationAngle );
Rotate performs an angular transform (rotation) on the Geometry. The Origin is the only point in the transformation guaranteed to remain in the same location after the transformation is performed. Regardless of the Origin, the transformed Geometry is the same, except for a positional offset. The RotationAngle is measured in radians.
An Envelope cannot be Rotated.
