EditPoint2.OutlineSection أسلوب (Object)
Creates an مخطط تفصيلي مقطع based تشغيل an تحرير يؤشر و the given نص يؤشر أو القيمة.
مساحة الاسم: EnvDTE80
التجميع: EnvDTE80 (في EnvDTE80.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الكائن أو يمثل العدد الصحيح عدد الأحرف.
التطبيقات
EditPoint.OutlineSection(Object)
ملاحظات
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()
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.OutLineSection(10)
End Sub
أمن NET Framework.
- الثقة الكاملة للمتصل الفوري. يتعذر استخدام هذا العضو بواسطة التعليمات البرمجية الموثوق بها جزئيًا. لمزيد من المعلومات، راجع باستخدام مكتبات من تعليمات برمجية موثوق بها جزئي.