IVsFindTarget.NavigateTo Method

Move to a specified location within a document.

Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

Syntax

'Déclaration
Function NavigateTo ( _
    pts As TextSpan() _
) As Integer
'Utilisation
Dim instance As IVsFindTarget
Dim pts As TextSpan()
Dim returnValue As Integer

returnValue = instance.NavigateTo(pts)
int NavigateTo(
    TextSpan[] pts
)
int NavigateTo(
    [InAttribute] array<TextSpan>^ pts
)
abstract NavigateTo : 
        pts:TextSpan[] -> int 
function NavigateTo(
    pts : TextSpan[]
) : int

Parameters

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From textmgr.idl:

HRESULT IVsFindTarget::NavigateTo(
   [in] const TextSpan * pts
);

The environment calls NavigateTo to advise you to move to the specified location in your document, and display the result within your doc window. If pts is equal to nulla null reference (Nothing in Visual Basic), then simply activate the window.

.NET Framework Security

See Also

Reference

IVsFindTarget Interface

IVsFindTarget Members

Microsoft.VisualStudio.TextManager.Interop Namespace