Share via


CodeClass2.EndPoint 屬性

取得程式碼類別結尾位置的編輯點。

命名空間:  EnvDTE80
組件:  EnvDTE80 (在 EnvDTE80.dll 中)

語法

'宣告
ReadOnly Property EndPoint As TextPoint
    Get
TextPoint EndPoint { get; }
property TextPoint^ EndPoint {
    TextPoint^ get ();
}
abstract EndPoint : TextPoint
function get EndPoint () : TextPoint

屬性值

型別:EnvDTE.TextPoint
TextPoint 物件。

實作

CodeClass.EndPoint

備註

編輯點位置緊接在程式碼項目最後一個字元 (包含任何分號、終止語法或分隔語法) 的後面。 您只要隱含地擷取屬性,即可開啟原始程式檔 (如果可以開啟)。 但是有些語言無法在磁碟上開啟任意檔案,而只能在目前開啟的方案中開啟檔案。

注意事項注意事項

在特定類型的編輯之後,程式碼模型項目 (例如類別、結構、函式、屬性、委派等) 的值可能不具決定性,表示其值不一定維持相同。 如需詳細資訊,請參閱使用程式碼模型探索程式碼 (Visual Basic) 的<程式碼模型項目值可以變更>一節。

範例

[Visual Basic]

Sub EndPointExample2(ByVal dte As DTE2)
    ' Before running this example, open a code document from a project
    ' and place the insertion point inside a class definition.
    Try
        ' Retrieve the CodeClass at the insertion point.
        Dim sel As TextSelection = _
            CType(dte.ActiveDocument.Selection, TextSelection)
        Dim cls As CodeClass = _
            CType(sel.ActivePoint.CodeElement( _
            vsCMElement.vsCMElementClass), CodeClass)
        Dim start As EditPoint = cls.StartPoint.CreateEditPoint()
        Dim def As String = start.GetText(cls.EndPoint)

        MsgBox(cls.Name & " has the following definition:" & _
            vbCrLf & vbCrLf & def)
    Catch ex As Exception
        MsgBox(ex.Message)
    End Try
End Sub

[C#]

public void EndPointExample2(DTE2 dte)
{
    // Before running this example, open a code document from a project
    // and place the insertion point inside a class definition.
    try
    {
        // Retrieve the CodeClass at the insertion point.
        TextSelection sel = 
            (TextSelection)dte.ActiveDocument.Selection;
        CodeClass cls = 
            (CodeClass)sel.ActivePoint.get_CodeElement(
            vsCMElement.vsCMElementClass);
        EditPoint start = cls.StartPoint.CreateEditPoint();
        string def = start.GetText(cls.EndPoint);

        MessageBox.Show(cls.Name + 
            " has the following definition:\n\n" + def);
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

.NET Framework 安全性

請參閱

參考

CodeClass2 介面

EndPoint 多載

EnvDTE80 命名空間

其他資源

HOW TO:編譯和執行 Automation 物件模型程式碼範例

使用程式碼模型探索程式碼 (Visual Basic)

使用程式碼模型探索程式碼 (Visual C#)