EditPoint2.OutlineSection, méthode (Object)
Crée une section en mode Plan basée sur un point d'édition et sur le point de texte ou la valeur donnés.
Espace de noms : EnvDTE80
Assembly : EnvDTE80 (dans EnvDTE80.dll)
Syntaxe
'Déclaration
Sub OutlineSection ( _
PointOrCount As Object _
)
void OutlineSection(
Object PointOrCount
)
void OutlineSection(
[InAttribute] Object^ PointOrCount
)
abstract OutlineSection :
PointOrCount:Object -> unit
function OutlineSection(
PointOrCount : Object
)
Paramètres
- PointOrCount
Type : System.Object
Obligatoire.Objet TextPoint ou entier qui représente le nombre de caractères.
Implémentations
EditPoint.OutlineSection(Object)
Notes
Si PointOrCount est un entier de 32 bits, OutlineSection crée une section en mode Plan dans le texte à partir d'un point d'édition jusqu'au nombre spécifié de caractères après ce point. Chaque caractère de saut de ligne impliqué en fin de ligne compte pour un caractère.
Exemples
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
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.