HtmlWindow::MoveTo Method (Int32, Int32)
Moves the window to the specified coordinates on the screen.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- x
-
Type:
System::Int32
The x-coordinate of the window's upper-left corner.
- y
-
Type:
System::Int32
The y-coordinate of the window's upper-left corner.
| Exception | Condition |
|---|---|
| UnauthorizedAccessException | The code trying to execute this operation does not have permission to manipulate this window. See the Remarks section for details. |
You cannot use MoveTo to move a window off of the visible edge of the screen; this method is also available through script on a Web page, and allowing untrusted script to render windows invisible is not considered secure.
MoveTo will raise an UnauthorizedAccessException if the window you are trying to move and its parent window have different top-level domains. For example, if you are hosting the WebBrowser control and it is pointing to a.adatum.com, you create a new window using OpenNew to display b.adatum.com. In this case, both windows are considered to be part of the same top-level domain, and the exception is not thrown. However, if you call OpenNew to display www,microsoft.com, the two windows now have different top-level domains, and the MoveTo operation will cause the exception to throw.
Available since 2.0