Contents

element(at:)

Returns the type of path element at the specified index.

Declaration

func element(at index: Int) -> NSBezierPath.ElementType

Parameters

  • index:

    The index of the desired path element.

Return Value

The type of the path element. For a list of constants, see NSBezierPath.ElementType.

Discussion

Path elements describe the commands used to define a path and include basic commands such as moving to a specific point, creating a line segment, creating a curve, or closing the path. The elements are stored in the order of their execution.

See Also

Related Documentation

Accessing Elements of a Path