Gets the last alert text of the tab.
Syntax
| C# | |
|---|
public string LastAlertText {get;} |
Property Value
Type: System.String
A string that contains the last alert text.
Example
The following code example uses the
LastAlertText property.
| C# | Copy Code |
|---|
// get main tab
Tab tab = instance.MainTab;
// get main domain
string alerttext = tab.LastAlertText; |
| PHP | Copy Code |
|---|
// get main tab
$tab = $instance->MainTab;
// get main domain
$alerttext = $tab->LastAlertText; |
Requirements
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also