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.
Embed www.collective2.com and forums.collective2.com pages.
// 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", };