[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.Rotation

Class Rotation

Namespace
GrapeCity.Documents.Word
Assembly
GcDocs.Word.dll

Represents a rotation in 3D space. A rotation is defined through the use of a latitude coordinate, a longitude coordinate, and a revolution about the axis as the latitude and longitude coordinates.

public class Rotation : FormattingBag
Inheritance
object
Rotation
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Properties

IsReadOnly

Gets a value indicating whether the rotation is read-only.

Default value is false.

public bool IsReadOnly { get; }

Property Value

bool

Latitude

Gets or sets the latitude value of the rotation.

Allowed values are from -0 to 359.9, inclusive.

Default value is 0.

public float Latitude { get; set; }

Property Value

float

Longitude

Gets or sets the longitude value of the rotation.

Allowed values are from -0 to 359.9, inclusive.

Default value is 0.

public float Longitude { get; set; }

Property Value

float

Revolution

Gets or sets the revolution around the central axis in the rotation.

Allowed values are from -0 to 359.9, inclusive.

Default value is 0.

public float Revolution { get; set; }

Property Value

float

Methods

FixInheritedValues()

Fixes all inherited values as "direct" values for this instance.

protected override void FixInheritedValues()

Reset()

Resets the rotation to inherited defaults.

public void Reset()