NOTICE: All information contained herein is, and remains
the property of TechnoCore.
The intellectual and technical concepts contained
herein are proprietary to TechnoCore and dissemination of this information or reproduction of this material
is strictly forbidden unless prior written permission is obtained
from TechnoCore.
The ObjTextIframe module provides a text processing object that generates an HTML <iframe> element. It is designed to be used within the Axion text processing engine to embed external web content.
This module takes a URL as input and wraps it in an <iframe> tag. The iframe is configured to be seamless and occupy the full width and height of its container. If the provided URL does not start with http, the module automatically prepends https:// to ensure it is a valid absolute URL.
The Process method accepts the following parameters:
| Parameter | Description | Type |
|---|---|---|
Param1 |
The URL of the content to be embedded in the iframe. | String |
Param2 |
Not used. | - |
Param3 |
Not used. | - |
Param4 |
Not used. | - |
Param5 |
Not used. | - |
Param6 |
Not used. | - |
Param7 |
Not used. | - |
Param8 |
Not used. | - |
To embed a website into a page, you can use the following syntax within a text field processed by the engine:
{iframe:www.example.com}
This will be processed and rendered as the following HTML:
<iframe src='https://www.example.com' width='100%' height='100%' style='border:none;' seamless></iframe>
cythonize -3 -a -i ObjTextIframe.py
Compiling /home/axion/projects/axion/factory.text/package.web/ObjTextIframe.py because it changed..[1/1] Cythonizing /home/axion/projects/axion/factory.text/package.web/ObjTextIframe.py
Updated : 2025-10-02