Fills the passed-in buffer with a sequence of glyphs
Original signature is '- (NSUInteger)getGlyphs:(NSGlyph *)glyphArray range:(NSRange)glyphRange'
Available in Mac OS X v10.0 and later.

C# | Visual Basic | Visual C++ |
public virtual NSUInteger GetGlyphsRange( IntPtr glyphArray, NSRange glyphRange )
Public Overridable Function GetGlyphsRange ( _ glyphArray As IntPtr, _ glyphRange As NSRange _ ) As NSUInteger
public: virtual NSUInteger GetGlyphsRange( IntPtr glyphArray, NSRange glyphRange )

- glyphArray (IntPtr)
- On output, the displayable glyphs from glyphRange, null-terminated. Does not include in the result any NSNullGlyph or other glyphs that are not shown. The memory passed in should be large enough for at least glyphRange.length+1 elements.
- glyphRange (NSRange)
- The range of glyphs from which to return the displayable glyphs.

The actual number of glyphs filled into the array is returned (not counting the null-termination).

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)