MonobjcMonobjc Documented Class Library
GetGlyphsRange Method (glyphArray, glyphRange)
NamespacesMonobjc.AppKitNSLayoutManagerGetGlyphsRange(IntPtr, NSRange)

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.

Declaration Syntax
C#Visual BasicVisual 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
)
Parameters
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.
Return Value
The actual number of glyphs filled into the array is returned (not counting the null-termination).
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)