EditPoint.Line 속성
EditPoint 개체의 줄 번호를 가져옵니다.
네임스페이스: 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
EditPoint 개체의 줄 번호입니다.
설명
줄 번호는 1부터 시작합니다.
예제
Public Sub Example(ByVal dte As DTE2)
Try
' Open a text document before running this example.
Dim objTD, objTD2 As TextDocument
Dim objEP As EditPoint
objTD = dte.ActiveDocument.Object("TextDocument")
objEP = objTD.StartPoint.CreateEditPoint()
objEP.Insert("Hello ")
'Show line number at editpoint.
MessageBox.Show("EditPoint is at line #: " + objEP.Line.ToString)
objTD2 = objEP.Parent
MessageBox.Show(objTD2.Type)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub
public void Example(DTE2 dte)
{
try
{
// Open a text document before running this example.
TextDocument objTD, objTD2;
EditPoint objEP;
objTD = (TextDocument)dte.ActiveDocument.Object("TextDocument");
objEP = (EditPoint)objTD.StartPoint.CreateEditPoint();
objEP.Insert("Hello ");
//Show line number at editpoint.
MessageBox.Show("EditPoint is at line #: " + objEP.Line);
objTD2 = objEP.Parent;
MessageBox.Show(objTD2.Type);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.