Zennolab.CommandCenter
Height Property
See Also  Example Send Feedback
Zennolab.CommandCenter Namespace > HtmlElement Class : Height Property
Gets the height of the html element.

Syntax

C# 
public int Height {get;}

Property Value

Type: System.Int32
The height of the html element in pixels.

Example

The following code example uses the Height property.
C#Copy Code
HtmlElement he = tab.GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
int height = he.Height;
PHPCopy Code
$he = $tab->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
$height = $he->Height;

Requirements

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

See Also

© 2011 All Rights Reserved.