مشاركة عبر


EditPoint.OutlineSection أسلوب

Creates an مخطط تفصيلي مقطع based تشغيل an تحرير يؤشر و the given نص يؤشر أو القيمة.

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

بناء الجملة

'إقرار
Sub OutlineSection ( _
    PointOrCount As Object _
)
void OutlineSection(
    Object PointOrCount
)
void OutlineSection(
    [InAttribute] Object^ PointOrCount
)
abstract OutlineSection : 
        PointOrCount:Object -> unit 
function OutlineSection(
    PointOrCount : Object
)

المعلمات

  • PointOrCount
    النوع: System.Object
    مطلوبة.أما على TextPointالكائن أو يمثل العدد الصحيح عدد الأحرف.

ملاحظات

If PointOrCount هو a 32-بت عدد صحيح, then OutlineSection creates an مخطط تفصيلي مقطع في the نص من an تحرير يؤشر إلى the specified رقم of حرف/ حروف following the تحرير يؤشر. Each implied newline حرف at the إنهاء of each خط counts كـ واحد حرف.

أمثلة

Sub OutlineSectionExample()
    ' Creates a text document with some text,
    ' and then puts the first two lines into
    ' outline view.
    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
    ' Go to top of document and outline the first
    ' 31 characters (the first two lines).
    objEditPt.StartOfDocument()
    objEditPt.OutlineSection(31)
End Sub

أمن NET Framework.

راجع أيضًَا

المرجع

EditPoint واجهة

EditPoint الأعضاء

EnvDTE مساحة الاسم

موارد أخرى

كيفية: الترجمة وإعادة تشغيل أمثلة التعليمات البرمجية لطراز كائن التنفيذ التلقائي