EditPoint.GetLines 方法
取得表示兩個指定行之間文字的字串。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.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
兩個指定行之間的文字。
備註
傳回的字串代表介於 Start (包含) 及 ExclusiveEnd (不含) 之間的文字。 這個字串包括做為行邊界的新行字元 (ACSII 字元 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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。