ZennoLab Assemblies Documentation
DisplacementInDocument Property
Example 
Gets the displacement of the upper left corner relative to the parent document.
Syntax
public Point DisplacementInDocument {get;}

Property Value

Type: System.Drawing.Point

The point of the upper left corner.

Remarks
This property displays the coordinates relative to the parent document. These coordinates are not always equal DisplacementInTabWindow.
Example
The following code example uses the DisplacementInDocument property.
using System.Drawing;
...
// find element
HtmlElement he = tab.GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get displacement in document
Point point = he.DisplacementInDocument;
use System\Drawing;
...
// find element
$he = $tab->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get displacement in document
$point = $he->DisplacementInDocument;
Requirements

Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven

See Also

Reference

HtmlElement Class
HtmlElement Members
DisplacementInTabWindow Property
Height Property
Width Property

Send Feedback