CodeClass.EndPoint 屬性
取得位於程式碼項目結尾的文字位置。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
ReadOnly Property EndPoint As TextPoint
TextPoint EndPoint { get; }
property TextPoint^ EndPoint {
TextPoint^ get ();
}
abstract EndPoint : TextPoint
function get EndPoint () : TextPoint
屬性值
型別:EnvDTE.TextPoint
TextPoint 物件。
備註
文字位置就緊接在程式碼項目最後一個字元 (包含任何分號、終止語法,或分隔語法) 的後面。您只要隱含地擷取屬性,即可開啟原始程式檔 (如果可以開啟)。但是有些語言無法在磁碟上開啟任意檔案,而只能在目前開啟的方案中開啟檔案。
注意事項 |
---|
在特定類型的編輯之後,程式碼模型項目 (例如類別、結構、函式、屬性、委派等) 的值可能不具決定性,表示其值不一定維持相同。如需詳細資訊,請參閱使用程式碼模型探索程式碼 (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
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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。