VCCodeElements Interface

A collection of objects (representing individual code elements) within one or more source files.

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

Syntax

'Declaration
<GuidAttribute("DF69B05E-2447-11D7-8BF6-00B0D03DAA06")> _
Public Interface VCCodeElements _
    Inherits CodeElements
'Usage
Dim instance As VCCodeElements
[GuidAttribute("DF69B05E-2447-11D7-8BF6-00B0D03DAA06")]
public interface VCCodeElements : CodeElements
[GuidAttribute(L"DF69B05E-2447-11D7-8BF6-00B0D03DAA06")]
public interface class VCCodeElements : CodeElements
public interface VCCodeElements extends CodeElements

Remarks

A VCCodeElements collection object is a collection of one or more VCCodeElement objects. Each object in the VCCodeElements collection object represents an individual code element (such as a definition or element of declarative syntax).

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

Examples

This example displays the names of all code element objects declared at the global namespace level of the existing project (alphabetically).

' Macro code.
Sub GetGlobalElements()
    Dim vcCM As VCCodeModel
    Dim vcElement As VCCodeElement
    Dim vcElements as VCCodeElements
    vcCM = DTE.Solution.Item(1).CodeModel
    vcElements = vcCM.CodeElements
    vcElements.Sort(vsCMSort.vsCMSortAlpha)
    For Each vcElement In vcElements
        MsgBox(vcElement.DisplayName)
    Next
End Sub

See Also

Reference

VCCodeElements Members

Microsoft.VisualStudio.VCCodeModel Namespace