strHTML = ""
Objects > XComponents > WebBrowser
It is Wrapper Component of Web Browser ActiveX/Plugin.
new WebBrowser(strName, position, nLeft, nTop[, nWidth, nHeight[, nRight, nBottom]])
Parameters | Type | Description |
strName | String | WebBrowser ID |
position | String | Coornidate type of WebBrowser |
nLeft | Integer | Left coordinate of a location of an WebBrowser. It is applied to the left coordinate of the position. |
nTop | Integer | Top coordinate of a location of an WebBrowser. It is applied to the top coordinate of the position. |
nWidth | Integer | Width of an WebBrowser |
nHeight | Integer | Height of an WebBrowser |
nRight | Integer | Right coordinate of a position to create an WebBrowser. It is applied to the right coordinate of the position. |
nBottom | Integer | Bottom coordinate of a position to create an WebBrowser. It is applied to the bottom coordinate of the position. |
Sample Call: var objWebBrowser = new WebBrowser("WebBrowser00", "absolute", 30, 120, 196, 46, null, null); var objWebBrowser = new WebBrowser("WebBrowser00", "absolute", null, null, 300, "400px", "80%", 300); |