---
title: "setRelativeHeight(_:withAdjustment:)"
framework: watchkit
role: symbol
role_heading: Instance Method
path: "watchkit/wkinterfaceobject/setrelativeheight(_:withadjustment:)"
---

# setRelativeHeight(_:withAdjustment:)

Sets the height of the object relative to its container.

## Declaration

```swift
func setRelativeHeight(_ height: CGFloat, withAdjustment adjustment: CGFloat)
```

## Parameters

- `height`: The height of the object relative to its immediate container. This value represents the percentage of the container’s height. This value must be between 0.0 and 1.0, and values outside of that range are clamped to the minimum or maximum value.
- `adjustment`: The amount (in points) to add or subtract from the relative height. Positive values increase the height of the item and negative values decrease it.

## Discussion

Discussion You can’t use this method to alter the height of tables or separator items. Changes to the height of an object are animatable.

## See Also

### Changing an Object’s Size

- [setWidth(_:)](watchkit/wkinterfaceobject/setwidth(_:).md)
- [setHeight(_:)](watchkit/wkinterfaceobject/setheight(_:).md)
- [setRelativeWidth(_:withAdjustment:)](watchkit/wkinterfaceobject/setrelativewidth(_:withadjustment:).md)
- [sizeToFitWidth()](watchkit/wkinterfaceobject/sizetofitwidth().md)
- [sizeToFitHeight()](watchkit/wkinterfaceobject/sizetofitheight().md)
