Interface IOrderedShape

Interface IOrderedShape

Namespace: Aspose.Imaging
Assembly: Aspose.Imaging.dll (25.4.0)

Represents an ordered shape. An ordered shape is a continuous set of points having a start point and end point. The continuous set of points connected using a specific rule.

public interface IOrderedShape

Properties

EndPoint

Gets the ending shape point.

PointF EndPoint { get; }

Property Value

PointF

IsClosed

Gets or sets a value indicating whether ordered shape is closed. When processing closed ordered shape the starting and ending points have no meaning.

bool IsClosed { get; set; }

Property Value

bool

StartPoint

Gets the starting shape point.

PointF StartPoint { get; }

Property Value

PointF

Methods

Reverse()

Reverses the order of points for this shape.

void Reverse()