---
title: "showGlyphsAtPoint(x:y:glyphs:count:)"
framework: coregraphics
role: symbol
role_heading: Instance Method
path: "coregraphics/cgcontext/showglyphsatpoint(x:y:glyphs:count:)"
---

# showGlyphsAtPoint(x:y:glyphs:count:)

Displays an array of glyphs at a position you specify.

## Declaration

```swift
func showGlyphsAtPoint(x: CGFloat, y: CGFloat, glyphs: UnsafePointer<CGGlyph>?, count: Int)
```

## Parameters

- `x`: A value for the x-coordinate of the user space at which to display the glyphs.
- `y`: A value for the y-coordinate of the user space at which to display the glyphs.
- `glyphs`: An array of glyphs to display.
- `count`: The total number of glyphs passed in the glyphs parameter.

## Discussion

Discussion This function displays an array of glyphs at the specified position in the user space.

## See Also

### Related Documentation

- [showText(string:length:)](coregraphics/cgcontext/showtext(string:length:).md)
- [showTextAtPoint(x:y:string:length:)](coregraphics/cgcontext/showtextatpoint(x:y:string:length:).md)

### Drawing Text

- [textMatrix](coregraphics/cgcontext/textmatrix.md)
- [textPosition](coregraphics/cgcontext/textposition.md)
- [selectFont(name:size:textEncoding:)](coregraphics/cgcontext/selectfont(name:size:textencoding:).md)
- [setCharacterSpacing(_:)](coregraphics/cgcontext/setcharacterspacing(_:).md)
- [setFont(_:)](coregraphics/cgcontext/setfont(_:).md)
- [setFontSize(_:)](coregraphics/cgcontext/setfontsize(_:).md)
- [setTextDrawingMode(_:)](coregraphics/cgcontext/settextdrawingmode(_:).md)
- [setAllowsFontSmoothing(_:)](coregraphics/cgcontext/setallowsfontsmoothing(_:).md)
- [setAllowsFontSubpixelPositioning(_:)](coregraphics/cgcontext/setallowsfontsubpixelpositioning(_:).md)
- [setAllowsFontSubpixelQuantization(_:)](coregraphics/cgcontext/setallowsfontsubpixelquantization(_:).md)
- [setShouldSmoothFonts(_:)](coregraphics/cgcontext/setshouldsmoothfonts(_:).md)
- [setShouldSubpixelPositionFonts(_:)](coregraphics/cgcontext/setshouldsubpixelpositionfonts(_:).md)
- [setShouldSubpixelQuantizeFonts(_:)](coregraphics/cgcontext/setshouldsubpixelquantizefonts(_:).md)
- [showGlyphs(g:count:)](coregraphics/cgcontext/showglyphs(g:count:).md)
- [showGlyphs(_:at:)](coregraphics/cgcontext/showglyphs(_:at:).md)
