VCCodeInclude.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
声明
ReadOnly Property IsCodeType As Boolean
用法
Dim instance As VCCodeInclude
Dim value As Boolean
value = instance.IsCodeType
bool IsCodeType { get; }
property bool IsCodeType {
bool get ();
}
function get IsCodeType () : boolean
Property Value
Type: System.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 vsCMElementClass(), vsCMElementInterface(), vsCMElementDelegate(), vsCMElementStruct(), or vsCMElementEnum().
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Concepts
How to: Compile and Run the Automation Object Model Code Examples