IframeOutput
Iframe output widget for embedding external web content or HTML.
Signature
def IframeOutput(
url_or_html: str,
width: int = 800,
height: int = 600,
full_width: bool = False
)
Parameters
Name | Description | Type | Default |
---|---|---|---|
url_or_html (required) | The URL to embed or HTML content to display in the iframe. | str | None |
width | Width of the iframe in pixels. | int | 800 |
height | Height of the iframe in pixels. | int | 600 |
full_width | Whether the iframe should take up the full width of its container. | bool | False |