ZennoLab Assemblies Documentation
NavigateTimeout Property
See Also  Example Send Feedback
ZennoLab.CommandCenter Assembly > ZennoLab.CommandCenter Namespace > Tab Class : NavigateTimeout Property

Glossary Item Box

Gets or sets the timeout of page loading.

Syntax

C# 
public int NavigateTimeout {get; set;}

Property Value

Type: System.Int32

The timeout of page load in seconds.

Example

The following code example uses the NavigateTimeout property.
C#Copy Code
Tab tab = instance.MainTab;
            
int timeout = tab.NavigateTimeout;
            
tab.NavigateTimeout = timeout*2;
PHPCopy Code
$tab = $instance->MainTab;
            
$timeout = $tab->NavigateTimeout;
            
$tab->NavigateTimeout = $timeout*2;

Requirements

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

See Also

© 2012 All Rights Reserved.