---
title: "paragraphSpacing(afterGlyphAt:withProposedLineFragmentRect:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nstypesetter/paragraphspacing(afterglyphat:withproposedlinefragmentrect:)"
---

# paragraphSpacing(afterGlyphAt:withProposedLineFragmentRect:)

Returns the paragraph spacing that is in effect after the specified glyph.

## Declaration

```swift
func paragraphSpacing(afterGlyphAt glyphIndex: Int, withProposedLineFragmentRect rect: NSRect) -> CGFloat
```

## Parameters

- `glyphIndex`: The index of the glyph in question.
- `rect`: The line fragment rectangle of the last line in the paragraph.

## Return Value

Return Value The paragraph spacing—that is, the number of points of space added following a paragraph—that is in effect after the glyph specified by glyphIndex.

## Discussion

Discussion The typesetter adds the number of points specified in the return value to the bottom of the line fragment rectangle specified by rect (but not to the used line fragment rectangle for that line). Paragraph spacing added after a paragraph correlates to the value returned by the paragraphSpacing method of NSParagraphStyle, which you can set using the paragraphSpacing method of NSMutableParagraphStyle.

## See Also

### Getting spacing information

- [lineSpacing(afterGlyphAt:withProposedLineFragmentRect:)](appkit/nstypesetter/linespacing(afterglyphat:withproposedlinefragmentrect:).md)
- [paragraphSpacing(beforeGlyphAt:withProposedLineFragmentRect:)](appkit/nstypesetter/paragraphspacing(beforeglyphat:withproposedlinefragmentrect:).md)
