TextSelection.EndOfDocument 메서드
개체를 문서의 끝으로 이동합니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
Sub EndOfDocument ( _
Extend As Boolean _
)
void EndOfDocument(
bool Extend
)
void EndOfDocument(
[InAttribute] bool Extend
)
abstract EndOfDocument :
Extend:bool -> unit
function EndOfDocument(
Extend : boolean
)
매개 변수
- Extend
형식: System.Boolean
선택적 요소.이동된 텍스트가 축소되었는지 여부를 확인합니다.기본값은 false입니다.
설명
Extend가 true이면 선택한 텍스트의 활성 끝만 이동합니다.그렇지 않으면 선택한 텍스트는 축소되어 문서의 끝에 배치됩니다.
예제
Sub EndOfDocumentExample()
' Before running this example, open a text document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
Dim objAnchor As VirtualPoint = objSel.AnchorPoint
' objAnchor is "live", tied to the position of the actual
' selection, so it will reflect any changes. iCol and iRow are
' created here to save a "snapshot" of the anchor point's position
' at this time.
Dim iCol As Long = objAnchor.DisplayColumn
Dim iRow As Long = objAnchor.Line
' As the selection is extended, the active point moves but the
' anchor point remains in place.
objSel.StartOfDocument(True)
objSel.EndOfDocument(True)
If (iCol = objAnchor.DisplayColumn And iRow = objAnchor.Line) Then
MsgBox("The anchor point has remained in place at row " & iRow & ", display column " & iCol)
End If
End Sub
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.