TypeKind Property
Visual Studio .NET 2003
Returns the base type of the item.
[Visual Basic .NET]
Public ReadOnly Property TypeKind() As vsCMTypeRef
[Visual Basic 6]
Property Get TypeKind() As vsCMTypeRef
[C++]
HRESULT __stdcall get_TypeKind( /* [out, retval] */ vsCMTypeRef* retVal );
[C#]
vsCMTypeRef TypeKind {get;}
[JScript .NET]
public function get TypeKind() : vsCMTypeRef
Return Value
Returns a vsCMTypeRef value.
Remarks
Returns the kind of the type, for example, whether it is an Enterprise Framework system built-in type, a type reference (such as a class, interface, and so forth), or an array type.
When the type is an array or pointer, CodeTypeRef.ElementType is the CodeTypeRef object for the array elements or what the pointer can point to. For language-specific modeling, the type is Other and you must check the language of CodeTypeRef.Parent to discover a more specific interface for which you can Query Interface.
See Also
Applies To: CodeTypeRef Object