Zennolab.CommandCenter
OuterHtml Property
See Also  Example Send Feedback
Zennolab.CommandCenter Namespace > HtmlElement Class : OuterHtml Property
Gets the dom text of the html element.

Syntax

C# 
public string OuterHtml {get;}

Property Value

Type: System.String

The dom text of the html element.

Example

The following code example uses the OuterHtml property.
C#Copy Code
HtmlElement he = tab.GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
            
string domText = he.OuterHtml;
PHPCopy Code
$he = $tab->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
            
$domText = $he->OuterHtml;

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.