مشاركة عبر


TextSelection.GotoLine أسلوب

تحريك إلى بداية السطر المشار إليه و تحديد الخط إذا طلبت.

مساحة الاسم:  EnvDTE
التجميع:  EnvDTE (في EnvDTE.dll)

بناء الجملة

'إقرار
Sub GotoLine ( _
    Line As Integer, _
    Select As Boolean _
)
void GotoLine(
    int Line,
    bool Select
)
void GotoLine(
    [InAttribute] int Line, 
    [InAttribute] bool Select
)
abstract GotoLine : 
        Line:int * 
        Select:bool -> unit 
function GotoLine(
    Line : int, 
    Select : boolean
)

المعلمات

  • Line
    النوع: System.Int32
    مطلوبة.رقم السطر إلى الانتقال إلى، البداية في واحد.
  • Select
    النوع: System.Boolean
    اختياري.الإشارة إلى ما إذا كان الخط الهدف محدد.يكون الإعداد الافتراضي هو false.

ملاحظات

GotoLineله نفس تأثيرTextSelection.MoveToLineAndOffset(Line, 0, False). IfSelectهوtrue, thenGotoLinealso performsEndOfLine(True).

أمثلة

Sub GotoLineExample()
   ' Before running this example, open a text document.
   Dim objSel As TextSelection = DTE.ActiveDocument.Selection
   ' Go to first line in document and select it.
   objSel.GotoLine(1, True)
End Sub

أمن NET Framework.

راجع أيضًَا

المرجع

TextSelection واجهة

TextSelection الأعضاء

EnvDTE مساحة الاسم