---
title: "accessibilityZoomOut(at:)"
framework: objectivec
role: symbol
role_heading: Instance Method
path: "objectivec/nsobject-swift.class/accessibilityzoomout(at:)"
---

# accessibilityZoomOut(at:)

Zooms out from the content at the specified point.

## Declaration

```swift
@MainActor func accessibilityZoomOut(at point: CGPoint) -> Bool
```

## Parameters

- `point`: The point where a person performs the zoom out action.

## Return Value

Return Value YES if this method successfully handles zooming; otherwise, NO. By default, this method returns NO.

## Discussion

Discussion If your element has the supportsZoom trait, you need to implement this method and accessibilityZoomIn(at:). Use this method to zoom out from the specified point. For example, if the element allows a pinch gesture to zoom out from the view’s content, implement this method so that the VoiceOver zoom action receives the same behavior.
