다음을 통해 공유


EditPoint2.GetLines 메서드 (Int32, Int32)

지정한 두 줄 사이의 텍스트를 나타내는 문자열을 반환합니다.

네임스페이스:  EnvDTE80
어셈블리:  EnvDTE80(EnvDTE80.dll)

구문

‘선언
Function GetLines ( _
    Start As Integer, _
    ExclusiveEnd As Integer _
) As String
string GetLines(
    int Start,
    int ExclusiveEnd
)
String^ GetLines(
    [InAttribute] int Start, 
    [InAttribute] int ExclusiveEnd
)
abstract GetLines : 
        Start:int * 
        ExclusiveEnd:int -> string 
function GetLines(
    Start : int, 
    ExclusiveEnd : int
) : String

매개 변수

  • Start
    형식: System.Int32
    선택적 요소로서,텍스트를 포함할 마지막 줄 번호입니다.
  • ExclusiveEnd
    형식: System.Int32
    필수적 요소로서,텍스트를 포함할 마지막 줄 번호입니다.

반환 값

형식: System.String
지정된 두 줄 사이의 텍스트입니다.

구현

EditPoint.GetLines(Int32, Int32)

설명

반환되는 문자열은 Start(포함)와 ExclusiveEnd(제외) 사이의 텍스트를 나타냅니다. 문자열은 줄 경계의 줄 바꿈 문자(ASCII 문자 13)를 포함하므로 마지막 줄이 줄 바꿈 문자에서 끝나면 줄 바꿈 문자로 끝납니다.

예제

Sub GetLinesExample()
   Dim objTextDoc As TextDocument
   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
        
   ' Insert ten lines of text.
   For iCtr = 1 To 10
      objeditpt.Insert("This is a test." & Chr(13))
   Next iCtr
   objEditPt.StartOfDocument()
   msgbox("The results of GetLines: " & Chr(13) & objeditpt.GetLines(1, 6))
End Sub

.NET Framework 보안

  • 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.

참고 항목

참조

EditPoint2 인터페이스

GetLines 오버로드

EnvDTE80 네임스페이스