---
title: "append(_:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nsbezierpath/append(_:)"
---

# append(_:)

Appends the contents of the specified path object to the path.

## Declaration

```swift
func append(_ path: NSBezierPath)
```

## Parameters

- `path`: The path to add to the receiver.

## Discussion

Discussion This method adds the commands used to create aPath to the end of the receiver’s path. This method does not explicitly try to connect the subpaths in the two objects, although the operations in aPath may still cause that effect.

## See Also

### Appending Common Shapes to a Path

- [appendPoints(_:count:)](appkit/nsbezierpath/appendpoints(_:count:).md)
- [appendOval(in:)](appkit/nsbezierpath/appendoval(in:).md)
- [appendArc(from:to:radius:)](appkit/nsbezierpath/appendarc(from:to:radius:).md)
- [appendArc(withCenter:radius:startAngle:endAngle:)](appkit/nsbezierpath/appendarc(withcenter:radius:startangle:endangle:).md)
- [appendArc(withCenter:radius:startAngle:endAngle:clockwise:)](appkit/nsbezierpath/appendarc(withcenter:radius:startangle:endangle:clockwise:).md)
- [appendRect(_:)](appkit/nsbezierpath/appendrect(_:).md)
- [appendRoundedRect(_:xRadius:yRadius:)](appkit/nsbezierpath/appendroundedrect(_:xradius:yradius:).md)
- [append(withCGGlyph:in:)](appkit/nsbezierpath/append(withcgglyph:in:).md)
- [append(withCGGlyphs:count:in:)](appkit/nsbezierpath/append(withcgglyphs:count:in:).md)
- [appendGlyph(_:in:)](appkit/nsbezierpath/appendglyph(_:in:).md)
- [appendGlyphs(_:count:in:)](appkit/nsbezierpath/appendglyphs(_:count:in:).md)
- [appendPackedGlyphs(_:)](appkit/nsbezierpath/appendpackedglyphs(_:).md)
