---
title: "drawPackedGlyphs(_:at:)"
framework: appkit
role: symbol
role_heading: Type Method
path: "appkit/nsbezierpath/drawpackedglyphs(_:at:)"
---

# drawPackedGlyphs(_:at:)

Draws a set of packed glyphs at the specified point in the current coordinate system.

## Declaration

```swift
class func drawPackedGlyphs(_ packedGlyphs: UnsafePointer<CChar>, at point: NSPoint)
```

## Parameters

- `packedGlyphs`: A C-style array containing one or more CGGlyph data types terminated by a NULL character.
- `point`: The starting point at which to draw the glyphs.

## Discussion

Discussion This method draws the glyphs immediately. You should avoid using this method directly. Instead, use the appendGlyph(_:in:) and appendGlyphs(_:count:in:) methods to create a path with one or more glyphs.

## See Also

### Related Documentation

- [appendPackedGlyphs(_:)](appkit/nsbezierpath/appendpackedglyphs(_:).md)
- [set()](appkit/nscolor/set().md)

### Drawing a Path

- [stroke()](appkit/nsbezierpath/stroke().md)
- [fill()](appkit/nsbezierpath/fill().md)
- [fill(_:)](appkit/nsbezierpath/fill(_:).md)
- [stroke(_:)](appkit/nsbezierpath/stroke(_:).md)
- [strokeLine(from:to:)](appkit/nsbezierpath/strokeline(from:to:).md)
