---
title: "webViewIsResizable(_:)"
framework: webkit
role: symbol
role_heading: Instance Method
path: "webkit/webuidelegate/webviewisresizable(_:)"
---

# webViewIsResizable(_:)

Returns a Boolean value indicating whether a web view’s window can be resized.

## Declaration

```swift
optional func webViewIsResizable(_ sender: WebView!) -> Bool
```

## Parameters

- `sender`: The web view that sent the message.

## Return Value

Return Value true if the web view’s window can be resized; otherwise, false.

## Discussion

Discussion If you display multiple web views in a window then your user interface delegate should implement this method to handle this special case.

## See Also

### Moving and Resizing Windows

- [webView(_:setResizable:)](webkit/webuidelegate/webview(_:setresizable:).md)
- [webView(_:setFrame:)](webkit/webuidelegate/webview(_:setframe:).md)
- [webViewFrame(_:)](webkit/webuidelegate/webviewframe(_:).md)
