Click or drag to resize
FRAME

This topic contains the following sections:

The FRAME variable and the Frame object are used to generate an <IFRAME> HTML element (inline frame).

The inline frame element is used to embed another document within the current HTML document.

Example

Embed www.collective2.com and forums.collective2.com pages.

IFRAME element
// Embed www.collective2.com and forums.collective2.com pages.

FRAME = new HtmlFrame()
{
    Src = "https://www.collective2.com",
    Height = 400,
    Width = 800
};

// A sandbox effect - the desired page is not shown:
FRAME = new HtmlFrame()
{
    Src = "https://forums.collective2.com",
};
Code
FRAME code 01
Result
FRAME code 01 result
See Also