Link Search Menu Expand Document

HtmlView.GoUrl Method

Explanation Specify the URL of the web page to display.
This method allows to switch the page displayed from the CRS program.
Page transition is also possible from the displayed HTML hyperlink.
Call format HtmlView1.GoUrl( url )
Return value None
Arguments url Specifies the URL (URI) string for the page to open.
http, ftp, https, file (local path) etc. can be opened.
Exception None
Example of use
    Button b {
        X = 8;
        Y = 8;
        Width = 95;
        Height = 70;
        Function OnTouch(e) {
            ^.HtmlView1.GoUrl("http://google.co.jp/");
        }
    }
    
Related item