[This is preliminary documentation and is subject to change.]
When overridden in a derived class, moves the
XPathObjectNavigator to the previous sibling node of the current node.
Namespace: Tools.XmlT.XPathTAssembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public override bool MoveToPrevious() |
| Visual Basic |
|---|
Public Overrides Function MoveToPrevious As Boolean |
| Visual C++ |
|---|
public:
virtual bool MoveToPrevious() override |
| F# |
|---|
abstract MoveToPrevious : unit -> bool
override MoveToPrevious : unit -> bool |
| JScript |
|---|
public override function MoveToPrevious() : boolean |
Return Value
Returns true if the
XPathObjectNavigator is successful moving to the previous sibling node; otherwise, false if there is no previous sibling node or if the
XPathObjectNavigator is currently positioned on an attribute node. If false, the position of the
XPathObjectNavigator is unchanged.
Remarks
See Also