Contents

drawBackground(forGlyphRange:at:)

Draws background marks for the specified glyphs, which must lie completely within a single text container.

Declaration

func drawBackground(forGlyphRange glyphsToShow: NSRange, at origin: NSPoint)

Parameters

  • glyphsToShow:

    The range of glyphs for which the background is drawn.

  • origin:

    The position of the text container in the coordinate system of the currently focused view.

Discussion

This method is called by NSTextView for drawing. You can override it to perform additional drawing, or to replace text drawing entirely, but not to change layout. You can call this method directly, but focus must already be locked on the destination view or image.

Background marks are such things as selection highlighting, text background color, and any background for marked text, along with block decoration such as table backgrounds and borders.

Performs glyph generation and layout if needed.

See Also

Drawing