ZennoLab Assemblies Documentation
Height Property (Document)
Example 
Gets the height of the document.
Syntax
public int Height {get;}

Property Value

Type: System.Int32
The height of the document in pixels.
Example
The following code example uses the Height property.
// get document
Document doc = tab.MainDocument;
 
// get the height of document
int height = doc.Height;
// get document
$doc = $tab->MainDocument;
 
// get the height of document
$height = $doc->Height;
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

Document Class
Document Members
Width Property

Send Feedback