TYPEKIND Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies various types of data and functions.
public enum class TYPEKIND
public enum TYPEKIND
[System.Serializable]
public enum TYPEKIND
type TYPEKIND =
[<System.Serializable>]
type TYPEKIND =
Public Enum TYPEKIND
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
TKIND_ENUM | 0 | A set of enumerators. |
TKIND_RECORD | 1 | A structure with no methods. |
TKIND_MODULE | 2 | A module that can have only static functions and data (for example, a DLL). |
TKIND_INTERFACE | 3 | A type that has virtual functions, all of which are pure. |
TKIND_DISPATCH | 4 | A set of methods and properties that are accessible through |
TKIND_COCLASS | 5 | A set of implemented components interfaces. |
TKIND_ALIAS | 6 | A type that is an alias for another type. |
TKIND_UNION | 7 | A union of all members that have an offset of zero. |
TKIND_MAX | 8 | End-of-enumeration marker. |
Remarks
For more information, see TYPEKIND enumeration.
The common language runtime throws an exception when a COM method in native code returns an HRESULT. For more information, see How to: Map HRESULTs and Exceptions.