System::Xml::XPath::XPathNavigator::MoveToFollowing method
Contents
[
Hide
]XPathNavigator::MoveToFollowing(String, String) method
Moves the XPathNavigator to the element with the local name and namespace URI specified in document order.
virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(String localName, String namespaceURI)
Parameter | Type | Description |
---|---|---|
localName | String | The local name of the element. |
namespaceURI | String | The namespace URI of the element. |
ReturnValue
true if the XPathNavigator moved successfully; otherwise, false.
See Also
- Class String
- Class XPathNavigator
- Namespace System::Xml::XPath
- Library Aspose.PUB for C++
XPathNavigator::MoveToFollowing(String, String, SharedPtr<XPathNavigator>) method
Moves the XPathNavigator to the element with the local name and namespace URI specified, to the boundary specified, in document order.
virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(String localName, String namespaceURI, SharedPtr<XPathNavigator> end)
Parameter | Type | Description |
---|---|---|
localName | String | The local name of the element. |
namespaceURI | String | The namespace URI of the element. |
end | SharedPtr<XPathNavigator> | The XPathNavigator object positioned on the element boundary which the current XPathNavigator will not move past while searching for the following element. |
ReturnValue
true if the XPathNavigator moved successfully; otherwise, false.
See Also
- Class String
- Typedef SharedPtr
- Class XPathNavigator
- Class XPathNavigator
- Namespace System::Xml::XPath
- Library Aspose.PUB for C++
XPathNavigator::MoveToFollowing(XPathNodeType) method
Moves the XPathNavigator to the following element of the XPathNodeType specified in document order.
virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(XPathNodeType type)
Parameter | Type | Description |
---|---|---|
type | XPathNodeType | The XPathNodeType of the element. The XPathNodeType cannot be XPathNodeType::Attribute or XPathNodeType::Namespace. |
ReturnValue
true if the XPathNavigator moved successfully; otherwise, false.
See Also
- Enum XPathNodeType
- Class XPathNavigator
- Namespace System::Xml::XPath
- Library Aspose.PUB for C++
XPathNavigator::MoveToFollowing(XPathNodeType, SharedPtr<XPathNavigator>) method
Moves the XPathNavigator to the following element of the XPathNodeType specified, to the boundary specified, in document order.
virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(XPathNodeType type, SharedPtr<XPathNavigator> end)
Parameter | Type | Description |
---|---|---|
type | XPathNodeType | The XPathNodeType of the element. The XPathNodeType cannot be XPathNodeType::Attribute or XPathNodeType::Namespace. |
end | SharedPtr<XPathNavigator> | The XPathNavigator object positioned on the element boundary which the current XPathNavigator will not move past while searching for the following element. |
ReturnValue
true if the XPathNavigator moved successfully; otherwise, false.
See Also
- Enum XPathNodeType
- Typedef SharedPtr
- Class XPathNavigator
- Class XPathNavigator
- Namespace System::Xml::XPath
- Library Aspose.PUB for C++