EditPoint.Line, propriété
Obtient le numéro de ligne de l'objet EditPoint.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
ReadOnly Property Line As Integer
Get
int Line { get; }
property int Line {
int get ();
}
abstract Line : int
function get Line () : int
Valeur de propriété
Type : System.Int32
Numéro de ligne de l'objet EditPoint.
Implémentations
Notes
La numérotation des lignes débute à 1.
Exemples
Public Sub Example(ByVal dte As DTE2)
Try
' Open a text document before running this example.
Dim objTD, objTD2 As TextDocument
Dim objEP As EditPoint
objTD = dte.ActiveDocument.Object("TextDocument")
objEP = objTD.StartPoint.CreateEditPoint()
objEP.Insert("Hello ")
'Show line number at editpoint.
MessageBox.Show("EditPoint is at line #: " + objEP.Line.ToString)
objTD2 = objEP.Parent
MessageBox.Show(objTD2.Type)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub
public void Example(DTE2 dte)
{
try
{
// Open a text document before running this example.
TextDocument objTD, objTD2;
EditPoint objEP;
objTD = (TextDocument)dte.ActiveDocument.Object("TextDocument");
objEP = (EditPoint)objTD.StartPoint.CreateEditPoint();
objEP.Insert("Hello ");
//Show line number at editpoint.
MessageBox.Show("EditPoint is at line #: " + objEP.Line);
objTD2 = objEP.Parent;
MessageBox.Show(objTD2.Type);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
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.
Voir aussi
Référence
Autres ressources
Comment : compiler et exécuter les exemples de code du modèle objet Automation