TextPoint.Line プロパティ
オブジェクトの行番号を取得します。
名前空間: EnvDTE
アセンブリ: EnvDTE (EnvDTE.dll 内)
構文
'宣言
ReadOnly Property Line As Integer
int Line { get; }
property int Line {
int get ();
}
abstract Line : int with get
function get Line () : int
プロパティ値
型 : Int32
オブジェクトの行番号を示す整数値。
解説
行番号は、1 から始まります。
例
Sub LineExample()
Dim objTextDoc As TextDocument
Dim objTP As TextPoint, iCtr As Integer
Dim msg As String
' 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")
objTP = objTextDoc.StartPoint.CreateEditPoint
' Insert ten lines of text.
For iCtr = 1 To 10
objTP.Insert("This is a test." & Chr(13))
Next iCtr
' Display text point location information.
objTP.StartOfDocument()
msg = "DisplayColumn value: " & objTP.DisplayColumn & vbCr
msg = msg & "Line value: " & objTP.Line & vbCr
msg = msg & "LineCharOffset value: " & objTP.LineCharOffset & vbCr
msg = msg & "LineLength value: " & objTP.LineLength & vbCr
MsgBox(msg)
End Sub
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。