control.findByXmlNode()
- Last UpdatedJun 25, 2024
- 1 minute read
Use findByXmlNode() method to find a control with a specific XML node on the form
Syntax
control.findByXmlNode(mappedXMLnode);
Parameters
|
Parameter |
Description |
|---|---|
|
mappedXMLnode |
XML node of the control to search on the form. |
Return Value
This method returns a control object.
Example
// Set a value for the Text control.
control.findByXmlNode("EmployeeName").value = "John Dow";