This topic has not yet been rated - Rate this topic

VCCodeIDLImportLib.IsInjected Property

Gets a value indicating whether a code element has been injected by an attribute or a macro expansion.

Namespace:  Microsoft.VisualStudio.VCCodeModel
Assembly:  Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
bool IsInjected { get; }

Property Value

Type: System.Boolean
true if a code element has been injected by an attribute or macro expansion; otherwise, false.

See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.

This example iterates through all global VCCodeElement objects in a file and displays the name of those objects injected by attribute or macro expansions.

Sub InjectedObjects()
    Dim vcCM As VCCodeModel
    Dim vcCodeElement As VCCodeElement
    vcCM = DTE.Solution.Item(1).CodeModel
    For Each vcCodeElement In vcCM.CodeElements
        If (vcCodeElement.IsInjected) Then
            MsgBox(vcCodeElement.Name + " was injected.")
        End If
    Next
End Sub
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.