| C# | |
|---|---|
public string GetValue( bool useSelectedItems ) | |
Parameters
- useSelectedItems
Type: System.Boolean
true for getting value using selected items; otherwise, false.
Return Value
Type: System.String
The element value for the html element.
The following code example demonstrates uses of the GetValue method.
| C# | Copy Code |
|---|---|
// find html element HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0); // get value string heValue = he.GetValue(false); | |
| PHP | Copy Code |
|---|---|
// find html element $he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0); // get value $heValue = $he->GetValue(false); | |
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family