Exemplo n.º 1
0
 public void ScrollTo(Point point)
 {
     NativeHtmlWindow.ScrollTo(point.X, point.Y);
 }
Exemplo n.º 2
0
 public void ResizeTo(Size size)
 {
     NativeHtmlWindow.ResizeTo(size.Width, size.Height);
 }
Exemplo n.º 3
0
 public void ScrollTo(int x, int y)
 {
     NativeHtmlWindow.ScrollTo(x, y);
 }
Exemplo n.º 4
0
 public void RemoveFocus()
 {
     NativeHtmlWindow.Blur();
 }
Exemplo n.º 5
0
 public void ResizeTo(int width, int height)
 {
     NativeHtmlWindow.ResizeTo(width, height);
 }
Exemplo n.º 6
0
        public HtmlWindow OpenNew(string urlString, string windowOptions)
        {
            IHTMLWindow2 iHTMLWindow2 = NativeHtmlWindow.Open(urlString, "_blank", windowOptions, true);

            return((iHTMLWindow2 != null) ? new HtmlWindow(ShimManager, iHTMLWindow2) : null);
        }
Exemplo n.º 7
0
 public string Prompt(string message, string defaultInputValue)
 {
     return(NativeHtmlWindow.Prompt(message, defaultInputValue).ToString());
 }
Exemplo n.º 8
0
 public void Navigate(string urlString)
 {
     NativeHtmlWindow.Navigate(urlString);
 }
Exemplo n.º 9
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);
        }
Exemplo n.º 10
0
 public void MoveTo(Point point)
 {
     NativeHtmlWindow.MoveTo(point.X, point.Y);
 }
Exemplo n.º 11
0
 public void Navigate(Uri url)
 {
     NativeHtmlWindow.Navigate(url.ToString());
 }
Exemplo n.º 12
0
 public void MoveTo(int x, int y)
 {
     NativeHtmlWindow.MoveTo(x, y);
 }
Exemplo n.º 13
0
 public void Focus()
 {
     NativeHtmlWindow.Focus();
 }
Exemplo n.º 14
0
 public bool Confirm(string message)
 {
     return(NativeHtmlWindow.Confirm(message));
 }
Exemplo n.º 15
0
 public void Close()
 {
     NativeHtmlWindow.Close();
 }
Exemplo n.º 16
0
 public void Alert(string message)
 {
     NativeHtmlWindow.Alert(message);
 }