idx_get()
Contents
[
Hide
]XmlNode::idx_get(String) method
Returns the first child element with the specified XmlNode::get_Name.
virtual SharedPtr<XmlElement> System::Xml::XmlNode::idx_get(String name)
Arguments
Parameter | Type | Description |
---|---|---|
name | String | The qualified name of the element to retrieve. |
Return Value
The first XmlElement that matches the specified name. It returns nullptr if there is no match.
XmlNode::idx_get(String, String) method
Returns the first child element with the specified XmlNode::get_LocalName and XmlNode::get_NamespaceURI values.
virtual SharedPtr<XmlElement> System::Xml::XmlNode::idx_get(String localname, String ns)
Arguments
Parameter | Type | Description |
---|---|---|
localname | String | The local name of the element. |
ns | String | The namespace URI of the element. |
Return Value
The first XmlElement with the matching localname and ns. It returns nullptr if there is no match.
See Also
- Typedef SharedPtr
- Class XmlElement
- Class String
- Class XmlNode
- Namespace System::Xml
- Library Aspose.Slides