Sdílet prostřednictvím


CodeClass2.InheritanceKind – vlastnost

Získá nebo nastaví hodnotu označující, zda třídy mohou být použity k vytvoření nové třídy.

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

Syntaxe

'Deklarace
Property InheritanceKind As vsCMInheritanceKind
vsCMInheritanceKind InheritanceKind { get; set; }
property vsCMInheritanceKind InheritanceKind {
    vsCMInheritanceKind get ();
    void set (vsCMInheritanceKind value);
}
abstract InheritanceKind : vsCMInheritanceKind with get, set
function get InheritanceKind () : vsCMInheritanceKind
function set InheritanceKind (value : vsCMInheritanceKind)

Hodnota vlastnosti

Typ: EnvDTE80.vsCMInheritanceKind
A vsCMInheritanceKind konstantní.

Poznámky

[!POZNÁMKA]

Není 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 Zjištění kódu pomocí kódu modelu (Visual Basic).

Příklady

[C#]

public void CodeClass2InheritanceKindExample(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);

        // Show whether class may be inherited.
        if (cls.InheritanceKind == 
        vsCMInheritanceKind.vsCMInheritanceKindSealed)
            MessageBox.Show("This class is sealed");
        else MessageBox.Show("This class may be used to create a new 
        class");
    }
    catch (Exception e)
    {
        Console.WriteLine(e.Message);
    }
}

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

CodeClass2 Rozhraní

EnvDTE80 – obor názvů

Další zdroje

Jak: kompilace a spuštění příkladů kódu automatizace objektu modelu

Zjištění kódu pomocí kódu modelu (Visual Basic)

Zjištění kódu pomocí kódu modelu (Visual C#)