EditPoint.OutlineSection 方法
依據編輯點和指定的文字點或值建立外框區域。
命名空間: 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 物件或是代表字元數目的整數。
備註
如果 PointOrCount 是 32 位元的整數,則 OutlineSection 會在編輯點到編輯點之後指定字元數的文字中,建立一個大綱區段。 每行結尾的隱含新行字元都算一個字元。
範例
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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。