Sdílet prostřednictvím


CodeClass2.StartPoint – vlastnost

Získává TextPoint objektu definuje začátek třída

Obor názvů:  EnvDTE80
Sestavení:  EnvDTE80 (v EnvDTE80.dll)

Syntaxe

'Deklarace
ReadOnly Property StartPoint As TextPoint
    Get
TextPoint StartPoint { get; }
property TextPoint^ StartPoint {
    TextPoint^ get ();
}
abstract StartPoint : TextPoint
function get StartPoint () : TextPoint

Hodnota vlastnosti

Typ: EnvDTE.TextPoint
A TextPoint objektu.

Implementuje

CodeClass.StartPoint

Poznámky

Poznámka

Deterministický může být po provedení určité typy úprav, což znamená, že jejich hodnoty nelze dovolávat vždy zůstat stejné hodnoty prvků modelu kód jako třídy, struktury, funkce, atributy, delegátů a tak dále. Další informace naleznete v části Změna hodnoty prvku modelu kódu Discovering Code by Using the Code Model (Visual Basic).

Příklady

[C#]

public void CodeClass2StartPointExample(DTE2 dte2)
{
    // Before running this example, open a code document from a project
    // and place the insertion point within a class definition.
    try
    {   // Get the CodeClass2 at the insertion point.
        TextSelection sel = 
        (TextSelection)dte2.ActiveDocument.Selection;
        CodeClass2 cls = (CodeClass2)sel.ActivePoint.get_CodeElement(
            vsCMElement.vsCMElementClass);
        // Get TextPoint object at start of class.
        TextPoint tp = cls.StartPoint;
        // Get the line number where the class starts.
        MessageBox.Show("The TextPoint object is located at line " + 
        tp.Line.ToString());
    }
    catch (Exception e)
    {
        MessageBox.Show(e.Message);
    }
}

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

CodeClass2 Rozhraní

StartPoint – přetížení

EnvDTE80 – obor názvů

Další zdroje

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

Discovering Code by Using the Code Model (Visual Basic)

Discovering Code by Using the Code Model (Visual C#)