public interface IOrderedShape
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.
Modifier and Type | Method and Description |
---|---|
PointF |
getEndPoint()
Gets the ending shape point.
|
PointF |
getStartPoint()
Gets the starting shape point.
|
boolean |
isClosed()
Gets or sets a value indicating whether ordered shape is closed.
|
void |
reverse()
Reverses the order of points for this shape.
|
void |
setClosed(boolean value)
Gets or sets a value indicating whether ordered shape is closed.
|
PointF getStartPoint()
Gets the starting shape point.
Value: The starting shape point.PointF getEndPoint()
Gets the ending shape point.
Value: The ending shape point.boolean 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.
Value:True
if this ordered shape is closed; otherwise, false
.void setClosed(boolean value)
Gets or sets a value indicating whether ordered shape is closed. When processing closed ordered shape the starting and ending points have no meaning.
Value:True
if this ordered shape is closed; otherwise, false
.void reverse()
Reverses the order of points for this shape.
Copyright (c) 2008-2019 Aspose Pty Ltd. All Rights Reserved.