Udostępnij za pośrednictwem


Właściwość CodeClass2.DataTypeKind —

Zestawy pobiera relacji tej klasy z innych klas.

Przestrzeń nazw:  EnvDTE80
Zestaw:  EnvDTE80 (w EnvDTE80.dll)

Składnia

'Deklaracja
Property DataTypeKind As vsCMDataTypeKind
vsCMDataTypeKind DataTypeKind { get; set; }
property vsCMDataTypeKind DataTypeKind {
    vsCMDataTypeKind get ();
    void set (vsCMDataTypeKind value);
}
abstract DataTypeKind : vsCMDataTypeKind with get, set
function get DataTypeKind () : vsCMDataTypeKind 
function set DataTypeKind (value : vsCMDataTypeKind)

Wartość właściwości

Typ: EnvDTE80.vsCMDataTypeKind
Zwraca wartość z vsCMDataTypeKind wyliczenie.

Uwagi

Na przykład, jeśli jest to główna klasa częściowe, to wywołanie zwraca vsCMDataTypeKindMain.Jeśli jest to klasa częściowe, zwraca vsCMDataTypeKindPartial.

[!UWAGA]

Wartości elementów modelu kodu, takich jak klasy, strukturach, funkcje, atrybuty, delegatów i tak dalej mogą być deterministyczny po dokonaniu niektórych rodzajów modyfikacji, co oznacza, że ich wartości nie mogą być powoływane do zawsze pozostają takie same.Aby uzyskać więcej informacji, zobacz sekcję wartości elementu modelu kod można zmienić w Odnajdowanie kodu za pomocą modelu kodu (Visual Basic).

Przykłady

[Visual Basic]

Sub DataTypeKindExample(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 CodeClass2 = _
          CType(sel.ActivePoint.CodeElement( _
        vsCMElement.vsCMElementClass), CodeClass2)

        ' Displays the data type kind of the class.
        Select Case cls.DataTypeKind
            Case vsCMDataTypeKind.vsCMDataTypeKindBlueprint
                MsgBox("Class data type: Blueprint")
            Case vsCMDataTypeKind.vsCMDataTypeKindMain
                MsgBox("Class data type: Main")
            Case vsCMDataTypeKind.vsCMDataTypeKindModule
                MsgBox("Class data type: Module")
            Case vsCMDataTypeKind.vsCMDataTypeKindPartial
                MsgBox("Class data type: Partial")
        End Select

    Catch ex As System.Exception
        MsgBox(ex.ToString)
    End Try
End Sub

[C#]

public void DataTypeKindExample(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;
        CodeClass2 cls = 
        (CodeClass2)sel.ActivePoint.get_CodeElement
        (vsCMElement.vsCMElementClass);

        // Display the data type kind of the class.
        MessageBox.Show("Class data type kind: " + cls.DataTypeKind);
    }
    catch (System.Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

CodeClass2 Interfejs

Przestrzeń nazw EnvDTE80

Inne zasoby

Porady: kompilowanie i uruchamianie kodu modelu obiektów automatyzacji — przykłady

Odnajdowanie kodu za pomocą modelu kodu (Visual Basic)

Odnajdowanie kodu za pomocą modelu kodu (Visual C#)