TYPEKIND Enumeración

Definición

Precaución

Use System.Runtime.InteropServices.ComTypes.TYPEKIND instead. http://go.microsoft.com/fwlink/?linkid=14202

Utilice TYPEKIND en su lugar.

public enum class TYPEKIND
[System.Runtime.InteropServices.ComVisible(false)]
[System.Serializable]
public enum TYPEKIND
[System.Serializable]
[System.Obsolete("Use System.Runtime.InteropServices.ComTypes.TYPEKIND instead. http://go.microsoft.com/fwlink/?linkid=14202", false)]
public enum TYPEKIND
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Serializable>]
type TYPEKIND = 
[<System.Serializable>]
[<System.Obsolete("Use System.Runtime.InteropServices.ComTypes.TYPEKIND instead. http://go.microsoft.com/fwlink/?linkid=14202", false)>]
type TYPEKIND = 
Public Enum TYPEKIND
Herencia
TYPEKIND
Atributos

Campos

Nombre Valor Description
TKIND_ENUM 0

Un conjunto de enumeradores.

TKIND_RECORD 1

Estructura sin métodos.

TKIND_MODULE 2

Módulo que solo puede tener funciones y datos estáticos (por ejemplo, un archivo DLL).

TKIND_INTERFACE 3

Tipo que tiene funciones virtuales, todas las cuales son puras.

TKIND_DISPATCH 4

Conjunto de métodos y propiedades a los que se puede acceder a través IDispatch::Invokede . De forma predeterminada, las interfaces duales devuelven TKIND_DISPATCH.

TKIND_COCLASS 5

Un conjunto de interfaces de componentes implementadas.

TKIND_ALIAS 6

Tipo que es un alias para otro tipo.

TKIND_UNION 7

Unión de todos los miembros que tienen un desplazamiento de cero.

TKIND_MAX 8

Final del marcador de enumeración.

Comentarios

Para obtener más información sobre TYPEKIND, vea MSDN Library.

Se aplica a