EditPoint.MoveToPoint(TextPoint) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Moves the active point to the given position.
public:
void MoveToPoint(EnvDTE::TextPoint ^ Point);
public:
void MoveToPoint(EnvDTE::TextPoint ^ Point);
void MoveToPoint(EnvDTE::TextPoint const & Point);
[System.Runtime.InteropServices.DispId(170)]
public void MoveToPoint (EnvDTE.TextPoint Point);
[<System.Runtime.InteropServices.DispId(170)>]
abstract member MoveToPoint : EnvDTE.TextPoint -> unit
Public Sub MoveToPoint (Point As TextPoint)
Parameters
- Point
- TextPoint
Required. A TextPoint object representing the location in which to move the character.
- Attributes
Examples
Sub MoveToPointExample()
Dim objTextDoc As TextDocument
Dim objMovePt As EditPoint
Dim objEditPt As EditPoint, iCtr As Integer
' Create a new text file.
DTE.ItemOperations.NewFile("General\Text File")
' Get a handle to the new document and create an EditPoint.
objTextDoc = DTE.ActiveDocument.Object("TextDocument")
objEditPt = objTextDoc.StartPoint.CreateEditPoint
objMovePt = objTextDoc.EndPoint.CreateEditPoint
' Insert ten lines of text.
For iCtr = 1 To 10
objEditPt.Insert("This is a test." & Chr(13))
Next iCtr
' Move the active point to the location of the second edit point
' and then insert some text.
objEditPt.StartOfDocument()
objMovePt.LineDown(3)
objEditPt.MoveToPoint(objMovePt)
objEditPt.Insert("HELLO")
End Sub