GetText
Returns the inner text of the current node and its child nodes.
For example: <text>123<one>4</one></text> returns "1234".
Syntax
expression.GetText();
expression - A variable that represents a ApiCustomXmlNode class.
Parameters
This method doesn't have any parameters.
Returns
string
Example
This example shows how to get the text content of a custom XML node.
- Code
- Result
// How to retrieve text content from custom XML node elements.
// Get text from message node.
let worksheet = Api.GetActiveSheet();
let xmlManager = worksheet.GetCustomXmlParts();
let xml = xmlManager.Add("<message>Hello from custom XML!</message>");
let messageNode = xml.GetNodes('/message')[0];
let text = messageNode.GetText();
worksheet.GetRange("A1").SetValue("Message: " + text);