TextPane2, interface
Représente un volet dans la fenêtre de l'éditeur de texte.
Espace de noms : EnvDTE80
Assembly : EnvDTE80 (dans EnvDTE80.dll)
Syntaxe
'Déclaration
<GuidAttribute("ACE19C7B-A0AC-4089-94FD-749CF4380E1F")> _
Public Interface TextPane2 _
Inherits TextPane
[GuidAttribute("ACE19C7B-A0AC-4089-94FD-749CF4380E1F")]
public interface TextPane2 : TextPane
[GuidAttribute(L"ACE19C7B-A0AC-4089-94FD-749CF4380E1F")]
public interface class TextPane2 : TextPane
[<GuidAttribute("ACE19C7B-A0AC-4089-94FD-749CF4380E1F")>]
type TextPane2 =
interface
interface TextPane
end
public interface TextPane2 extends TextPane
Le type TextPane2 expose les membres suivants.
Propriétés
Nom | Description | |
---|---|---|
Collection | (Hérité de TextPane.) | |
Collection | Obtient la collection contenant l'objet TextPane qui prend en charge cette propriété. | |
DTE | (Hérité de TextPane.) | |
DTE | Obtient l'objet d'extensibilité de niveau supérieur. | |
Height | (Hérité de TextPane.) | |
Height | Obtient la hauteur du volet de texte en unités de caractère. | |
IncrementalSearch | Fournit l'accès à la fonction de recherche incrémentielle (ISearch) de l'éditeur de texte. | |
Selection | (Hérité de TextPane.) | |
Selection | Obtient un objet représentant la sélection actuelle sur l'objet TextPane. | |
StartPoint | (Hérité de TextPane.) | |
StartPoint | Obtient l'objet TextPoint représentant le premier caractère affiché du volet. | |
Width | (Hérité de TextPane.) | |
Width | Obtient la largeur du volet en unités de caractère. | |
Window | (Hérité de TextPane.) | |
Window | Obtient l'objet Window qui contient le volet. |
Début
Méthodes
Nom | Description | |
---|---|---|
Activate() | (Hérité de TextPane.) | |
Activate() | Place le focus sur l'élément actuel. | |
IsVisible(TextPoint, Object) | (Hérité de TextPane.) | |
IsVisible(TextPoint, Object) | Retourne une valeur indiquant si le caractère ou les caractères spécifiés sont visibles dans le volet de texte. | |
TryToShow(TextPoint, vsPaneShowHow, Object) | (Hérité de TextPane.) | |
TryToShow(TextPoint, vsPaneShowHow, Object) | Ajuste l'emplacement de la vue dans le tampon de texte afin que la plage de texte indiquée s'affiche dans le volet de texte, si possible.Vous pouvez contrôler l'emplacement d'affichage du texte dans le volet. |
Début
Notes
Vous pouvez fractionner la fenêtre de l'éditeur de texte en deux volets.L'objet TextPane vous donne accès au texte sélectionné dans chaque volet, ainsi qu'aux propriétés du volet, telles que la hauteur, la largeur, etc.
Exemples
Cet exemple ouvre un document texte et affiche certaines propriétés du volet de texte dans une boîte de message.Pour plus d'informations sur l'exécution de cet exemple comme complément, consultez Comment : compiler et exécuter les exemples de code du modèle objet Automation.
Imports EnvDTE
Imports EnvDTE80
Public Sub OnConnection(ByVal application As Object, _
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
TextPane2Example(_applicationObject)
End Sub
Sub TextPane2Example(ByVal dte As DTE2)
Dim objTW As TextWindow
Dim objPane As TextPane2
Dim objStart As TextPoint
Dim objTextDoc As TextDocument
Dim objTextPt As TextPoint
Dim objEP As EditPoint
' Create a new text document.
_applicationObject.ItemOperations.NewFile("General\Text File")
' Get a handle to the new document and create EditPoint,
' TextPoint, and TextPane2 objects.
objTextDoc = CType(_applicationObject.ActiveDocument.Object _
("TextDocument"), TextDocument)
objEP = objTextDoc.StartPoint.CreateEditPoint
objTextPt = objTextDoc.StartPoint
' Plug in some text.
objEP.Insert("A test sentence.")
objTW = CType(dte.ActiveWindow.Object, TextWindow)
objPane = CType(objTW.ActivePane, TextPane2)
MsgBox("The active pane is " & Str(objPane.Height) _
& " lines high and " & Str(objPane.Width) & " columns wide.")
objStart = objPane.StartPoint
MsgBox("It begins at line " & Str(objStart.Line) & ", column " & _
Str(objStart.LineCharOffset) & ".")
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
TextPane2Example(_applicationObject);
}
public void TextPane2Example(DTE2 dte)
{
TextWindow objTW;
TextPane2 objPane;
TextPoint objStart;
TextDocument objTextDoc;
TextPoint objTextPt;
EditPoint2 objEP;
// Create a new text document.
_applicationObject.ItemOperations.NewFile(@"General\Text File",
"test.txt", Constants.vsViewKindTextView);
// Get a handle to the text document and create EditPoint2,
// TextPoint, and TextPane2 objects.
objTextDoc =(TextDocument)_applicationObject.ActiveDocument.Object
("TextDocument");
objEP = (EditPoint2)objTextDoc.StartPoint.CreateEditPoint();
objTextPt = objTextDoc.StartPoint;
// Plug in some text.
objEP.Insert("A test sentence.");
objTW = (TextWindow)_applicationObject.ActiveWindow.Object;
objPane = (TextPane2)objTW.ActivePane;
MessageBox.Show("The active pane is " + objPane.Height + "
lines high and " + objPane.Width + " columns wide.");
objStart = objPane.StartPoint;
MessageBox.Show("It begins at line " + objStart.Line
+ ", column " + objStart.LineCharOffset + ".");
}