---
title: alignmentRectInsets
framework: appkit
role: symbol
role_heading: Instance Property
path: appkit/nsview/alignmentrectinsets
---

# alignmentRectInsets

The insets (in points) from the view’s frame that define its content rectangle.

## Declaration

```swift
var alignmentRectInsets: NSEdgeInsets { get }
```

## Discussion

Discussion The default value is an NSEdgeInsets structure with the value 0 for each component. Custom views that draw ornamentation around their content can override this property and return insets that align with the edges of the content, excluding the ornamentation. This allows the constraint-based layout system to align views based on their content, rather than just their frame. Custom views whose content location can’t be expressed by a simple set of insets should override alignmentRect(forFrame:) and frame(forAlignmentRect:) to describe their custom transform between alignment rectangle and frame.

## See Also

### Aligning Views with Auto Layout

- [alignmentRect(forFrame:)](appkit/nsview/alignmentrect(forframe:).md)
- [frame(forAlignmentRect:)](appkit/nsview/frame(foralignmentrect:).md)
- [baselineOffsetFromBottom](appkit/nsview/baselineoffsetfrombottom.md)
- [firstBaselineOffsetFromTop](appkit/nsview/firstbaselineoffsetfromtop.md)
- [lastBaselineOffsetFromBottom](appkit/nsview/lastbaselineoffsetfrombottom.md)
