ZennoLab Assemblies Documentation
Handle Property
Example 
Gets the handle of the browser window.
Syntax
public int Handle {get;}

Property Value

Type: System.Int32

The handle of the browser window.

Example
The following code example uses the Handle property.
// get main tab
Tab tab = instance.MainTab;
 
// get handle
int handle = tab.Handle;
// get main tab
$tab = $instance->MainTab;
 
// get handle
$handle = $tab->Handle;
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

Tab Class
Tab Members

Send Feedback