Zennolab.CommandCenter
NavigateTimeout Property
See Also  Example Send Feedback
Zennolab.CommandCenter Namespace > Tab Class : NavigateTimeout Property
Gets or sets the timeout of page loading.

Syntax

C# 
public int NavigateTimeout {get; set;}

Property Value

Type: System.Int32

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

© 2011 All Rights Reserved.