---
title: "constraint(greaterThanOrEqualToSystemSpacingBelow:multiplier:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nslayoutyaxisanchor/constraint(greaterthanorequaltosystemspacingbelow:multiplier:)"
---

# constraint(greaterThanOrEqualToSystemSpacingBelow:multiplier:)

Returns a constraint that defines the minimum distance by which the current anchor is positioned below the specified anchor.

## Declaration

```swift
func constraint(greaterThanOrEqualToSystemSpacingBelow anchor: NSLayoutYAxisAnchor, multiplier: CGFloat) -> NSLayoutConstraint
```

## Parameters

- `anchor`: The anchor to use as the starting point for the constraint.
- `multiplier`: The multiple of the system spacing to use as the distance between the two anchors.

## Return Value

Return Value An NSLayoutConstraint object that imposes a minimum distance between the current anchor and the object in the anchor parameter.

## Discussion

Discussion The constraint causes the current anchor to be positioned below the object in the anchor parameter. The minimum distance between the two anchors is determined by multiplying the system spacing by the value in the multiplier parameter. The value of the system spacing is determined from information available from the anchors. For example, if the anchors represent text baselines, the spacing is determined by the fonts used at those baselines.

## See Also

### Building system spacing constraints

- [constraint(equalToSystemSpacingBelow:multiplier:)](appkit/nslayoutyaxisanchor/constraint(equaltosystemspacingbelow:multiplier:).md)
- [constraint(lessThanOrEqualToSystemSpacingBelow:multiplier:)](appkit/nslayoutyaxisanchor/constraint(lessthanorequaltosystemspacingbelow:multiplier:).md)
- [Creating self-sizing table view cells](uikit/creating-self-sizing-table-view-cells.md)
