EditPoint.Line Property

Gets the EditPoint object's line number.

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

'Declaration
ReadOnly Property Line As Integer
int Line { get; }
property int Line {
    int get ();
}
abstract Line : int
function get Line () : int

Property Value

Type: System.Int32
The line number of the EditPoint object.

Implements

TextPoint.Line

Remarks

Line numbers start at one.

Examples

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);
   }
}

.NET Framework Security

See Also

Reference

EditPoint Interface

EnvDTE Namespace

Other Resources

How to: Compile and Run the Automation Object Model Code Examples