System::Xml::XmlValidatingReader::MoveToAttribute method
Contents
[
Hide
]XmlValidatingReader::MoveToAttribute(int32_t) method
Moves to the attribute with the specified index.
void System::Xml::XmlValidatingReader::MoveToAttribute(int32_t i) override
| Parameter | Type | Description | 
|---|---|---|
| i | int32_t | The index of the attribute. | 
See Also
- Class XmlValidatingReader
 - Namespace System::Xml
 - Library Aspose.PDF for C++
 
XmlValidatingReader::MoveToAttribute(String, String) method
Moves to the attribute with the specified local name and namespace Uniform Resource Identifier (URI).
bool System::Xml::XmlValidatingReader::MoveToAttribute(String localName, String namespaceURI) override
| Parameter | Type | Description | 
|---|---|---|
| localName | String | The local name of the attribute. | 
| namespaceURI | String | The namespace URI of the attribute. | 
ReturnValue
true if the attribute is found; otherwise, false. If false, the position of the reader does not change.
See Also
- Class String
 - Class XmlValidatingReader
 - Namespace System::Xml
 - Library Aspose.PDF for C++
 
XmlValidatingReader::MoveToAttribute(String) method
Moves to the attribute with the specified name.
bool System::Xml::XmlValidatingReader::MoveToAttribute(String name) override
| Parameter | Type | Description | 
|---|---|---|
| name | String | The qualified name of the attribute. | 
ReturnValue
true if the attribute is found; otherwise, false. If false, the position of the reader does not change.
See Also
- Class String
 - Class XmlValidatingReader
 - Namespace System::Xml
 - Library Aspose.PDF for C++