[This is preliminary documentation and is subject to change.]

Moves to the node that has an attribute of type ID whose value matches the specified String.

Namespace: Tools.XmlT.XPathT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public override bool MoveToId(
	string id
)
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Overrides Function MoveToId ( _
	id As String _
) As Boolean
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public:
virtual bool MoveToId(
	String^ id
) override
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract MoveToId : 
        id:string -> bool 
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
override MoveToId : 
        id:string -> bool 
JScript
public override function MoveToId(
	id : String
) : boolean

Parameters

id
Type: System..::..String
A String representing the ID value of the node to which you want to move.

Return Value

Not implemeted. always returns false.

See Also