Class CmxArrowSpec

Class CmxArrowSpec

Namespace: Aspose.Imaging.FileFormats.Cmx.ObjectModel.Specs
Assembly: Aspose.Imaging.dll (25.7.0)

Represents geometric info specified for outline arrow (marker).

[JsonObject(MemberSerialization.OptIn)]
public class CmxArrowSpec : CmxPathSpec, ICmxObjectSpec
{
}
The given code already adheres to the standard indentation and spacing conventions, so no modifications are required in this case.

Inheritance

object CmxPathSpec CmxArrowSpec

Implements

ICmxObjectSpec

Inherited Members

CmxPathSpec.Equals(CmxPathSpec) , CmxPathSpec.Equals(object) , CmxPathSpec.GetHashCode() , CmxPathSpec.Points , CmxPathSpec.Type , object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

CmxArrowSpec()

public CmxArrowSpec()
   {
   }

Properties

ArrowOffset

Gets or sets the arrow offset.

[JsonProperty]
   public float ArrowOffset
   {
      get;
      set;
   }

Property Value

float

Methods

Equals(CmxArrowSpec)

Check if objects are equal.

protected bool Equals(CmxArrowSpec other)
   {
      return (
         this.Angle == other.Angle &&
         this.Length == other.Length &&
         this.Type == other.Type);
   }

Parameters

other CmxArrowSpec

The other object.

Returns

bool

The equality comparison result.

Equals(object)

Check if objects are equal.

public override bool Equals(object obj)
   {
   }

Parameters

obj object

The other object.

Returns

bool

The equality comparison result.

GetHashCode()

Get hash code of the current object.

public override int GetHashCode()
    {
    }

Returns

int

The hash code.

See Also

CmxPathSpec

 English