CodeClass2.InheritanceKind – vlastnost
Získá nebo nastaví hodnotu označující třídu lze vytvořit novou třídu.
Obor názvů: EnvDTE80
Sestavení: EnvDTE80 (v EnvDTE80.dll)
Syntaxe
'Deklarace
Property InheritanceKind As vsCMInheritanceKind
Get
Set
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 konstantu.
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 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
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.
Viz také
Odkaz
Další zdroje
How to: Compile and Run the Automation Object Model Code Examples