VCCodeIDLLibrary.IsCodeType Property

Gets a value indicating whether a CodeType object can be obtained from this object.

Namespace:  Microsoft.VisualStudio.VCCodeModel
Assembly:  Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)

Syntax

'Declaration
ReadOnly Property IsCodeType As Boolean
bool IsCodeType { get; }
property bool IsCodeType {
    bool get ();
}
abstract IsCodeType : bool with get
function get IsCodeType () : boolean

Property Value

Type: Boolean
true if a CodeType object can be obtained; otherwise, false.

Remarks

IsCodeType returns whether the code element is a code type. If it is, then you can query interface (QI) or cast it to a CodeType object. This is true when Kind is EnvDTE.vsCMElement.vsCMElementClass, EnvDTE.vsCMElement.vsCMElementInterface, EnvDTE.vsCMElement.vsCMElementDelegate, EnvDTE.vsCMElement.vsCMElementStruct, or EnvDTE.vsCMElement.vsCMElementEnum.

.NET Framework Security

See Also

Reference

VCCodeIDLLibrary Interface

Microsoft.VisualStudio.VCCodeModel Namespace

Other Resources

How to: Compile and Run the Automation Object Model Code Examples