 | ReaderUtilsGetAttributeOfChild Method |
Gets the XML attribute from a child node of the passed XML node by its name and the name of the child node.
This method simplifies the process of gathering one single child node attribute
Namespace: NanoXLSX.LowLevelAssembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.2+7f12a949130e0be1e987e553d2d08c083176cdca
Syntaxpublic static bool GetAttributeOfChild(
XmlNode node,
string childNodeName,
string attributeName,
out string output
)
Parameters
- node XmlNode
- XML node that contains the child node
- childNodeName String
- Name of the child node
- attributeName String
- Name of the attribute in the child node
- output String
- Value of the attribute as string or null if not found
Return Value
BooleanTrue if found, otherwise false
See Also