TextSelection.MoveToPoint 메서드
활성 지점을 지정된 위치로 이동합니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
Sub MoveToPoint ( _
Point As TextPoint, _
Extend As Boolean _
)
void MoveToPoint(
TextPoint Point,
bool Extend
)
void MoveToPoint(
[InAttribute] TextPoint^ Point,
[InAttribute] bool Extend
)
abstract MoveToPoint :
Point:TextPoint *
Extend:bool -> unit
function MoveToPoint(
Point : TextPoint,
Extend : boolean
)
매개 변수
- Point
형식: EnvDTE.TextPoint
필수 요소.문자를 이동할 위치입니다.
- Extend
형식: System.Boolean
선택적 요소.기본값은 false입니다.현재 선택을 확장할지 여부를 결정합니다. Extend가 true이면 선택 영역의 활성 끝이 해당 위치로 이동하고 앵커 끝은 현재 위치를 유지합니다.그렇지 않으면 양 끝은 지정한 위치로 옮겨집니다.이 인수는 TextSelection 개체에만 적용됩니다.
예제
Sub MoveToPointExample()
' Before running this example, open a text document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
If objSel.IsEmpty Then
' If there is no text selected, swap the words before and after
' the insertion point. We begin by selecting the word before
' the insertion point.
objSel.WordLeft(True)
If Not objSel.IsEmpty Then
' We can continue only if the selection was not already at
' the beginning of the document.
Dim strBefore As String = objSel.Text
' The text is saved in strBefore; now delete it and move
' past the following word.
objSel.Delete()
objSel.WordRight(True)
If objSel.Text.StartsWith(" ") Or objSel.Text.StartsWith(Microsoft.VisualBasic.ControlChars.Tab) Then
' The previous call to WordRight may have skipped some
' white space instead of an actual word. In that case,
' we should call it again.
objSel.WordRight(True)
End If
' Insert the new text at the end of the selection.
objSel.Insert(strBefore, vsInsertFlags.vsInsertFlagsInsertAtEnd)
End If
Else
' If some text is selected, replace the following word with the
' selected text.
Dim strSelected As String = objSel.Text
objSel.MoveToPoint(objSel.BottomPoint)
objSel.WordRight(True)
If objSel.Text.StartsWith(" ") Or objSel.Text.StartsWith(Microsoft.VisualBasic.ControlChars.Tab) Then
' The previous call to WordRight may have skipped some
' white space instead of an actual word. In that case, we
' should call it again.
objSel.WordRight(True)
End If
' Insert the text, overwriting the existing text and leaving
' the selection containing the inserted text.
objSel.Insert(strSelected, vsInsertFlags.vsInsertFlagsContainNewText)
End If
End Sub
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.