System::Xml::XmlAttributeCollection::idx_get method
Contents
[
Hide
]XmlAttributeCollection::idx_get(int32_t) method
Returns the attribute with the specified index.
SharedPtr<XmlAttribute> System::Xml::XmlAttributeCollection::idx_get(int32_t i)
Parameter | Type | Description |
---|---|---|
i | int32_t | The index of the attribute. |
ReturnValue
The attribute at the specified index.
See Also
- Typedef SharedPtr
- Class XmlAttribute
- Class XmlAttributeCollection
- Namespace System::Xml
- Library Aspose.Font for C++
XmlAttributeCollection::idx_get(const String&) method
Returns the attribute with the specified name.
SharedPtr<XmlAttribute> System::Xml::XmlAttributeCollection::idx_get(const String &name)
Parameter | Type | Description |
---|---|---|
name | const String& | The qualified name of the attribute. |
ReturnValue
The attribute with the specified name. If the attribute does not exist, this method returns nullptr.
See Also
- Typedef SharedPtr
- Class XmlAttribute
- Class String
- Class XmlAttributeCollection
- Namespace System::Xml
- Library Aspose.Font for C++
XmlAttributeCollection::idx_get(const String&, const String&) method
Returns the attribute with the specified local name and namespace Uniform Resource Identifier (URI).
SharedPtr<XmlAttribute> System::Xml::XmlAttributeCollection::idx_get(const String &localName, const String &namespaceURI)
Parameter | Type | Description |
---|---|---|
localName | const String& | The local name of the attribute. |
namespaceURI | const String& | The namespace URI of the attribute. |
ReturnValue
The attribute with the specified local name and namespace URI. If the attribute does not exist, this method returns nullptr.
See Also
- Typedef SharedPtr
- Class XmlAttribute
- Class String
- Class XmlAttributeCollection
- Namespace System::Xml
- Library Aspose.Font for C++