| C# | |
|---|---|
public HtmlElement NextSibling {get;} | |
Property Value
Type: Zennolab.CommandCenter.HtmlElement
The next element.
If the next element to a higher level, then return null.
The following code example uses the NextSibling property.
| C# | Copy Code |
|---|---|
// find element HtmlElement he = tab.GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0); // get next element HtmlElement next = he.NextSibling; | |
| PHP | Copy Code |
|---|---|
// find element $he = $tab->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0); // get next element $next = $he->NextSibling; | |
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family