Esempio n. 1
0
        public HtmlWindow OpenNew(string urlString, string windowOptions)
        {
            IHTMLWindow2 iHTMLWindow2 = NativeHtmlWindow.Open(urlString, "_blank", windowOptions, true);

            return((iHTMLWindow2 != null) ? new HtmlWindow(ShimManager, iHTMLWindow2) : null);
        }
Esempio n. 2
0
        public HtmlWindow Open(string urlString, string target, string windowOptions, bool replaceEntry)
        {
            IHTMLWindow2 iHTMLWindow2 = NativeHtmlWindow.Open(urlString, target, windowOptions, replaceEntry);

            return((iHTMLWindow2 != null) ? new HtmlWindow(ShimManager, iHTMLWindow2) : null);
        }