FUNCKIND Enumeração

Definição

Cuidado

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

Use FUNCKIND em seu lugar.

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

Campos

Nome Valor Description
FUNC_VIRTUAL 0

A função é acessada da mesma forma FUNC_PUREVIRTUAL, exceto que a função tem uma implementação.

FUNC_PUREVIRTUAL 1

A função é acessada por meio da tabela de funções virtuais (VTBL) e usa um ponteiro implícito this .

FUNC_NONVIRTUAL 2

A função é acessada por static endereço e usa um ponteiro implícito this .

FUNC_STATIC 3

A função é acessada por static endereço e não usa um ponteiro implícito this .

FUNC_DISPATCH 4

A função só pode ser acessada por meio de IDispatch.

Comentários

Para obter informações adicionais sobre FUNCKIND, consulte a Biblioteca MSDN.

Aplica-se a