Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
An object representing a #include code element in the source code of a solution.
Namespace: Microsoft.VisualStudio.VCCodeModel
Assembly: Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
Syntax
'Declaration
<GuidAttribute("17730D53-271F-11D7-8BF6-00B0D03DAA06")> _
Public Interface VCCodeInclude
'Usage
Dim instance As VCCodeInclude
[GuidAttribute("17730D53-271F-11D7-8BF6-00B0D03DAA06")]
public interface VCCodeInclude
[GuidAttribute(L"17730D53-271F-11D7-8BF6-00B0D03DAA06")]
public interface class VCCodeInclude
public interface VCCodeInclude
Remarks
The VCCodeInclude object represents a #include code statement in a source file, allowing access to information about the specific code element.
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 retrieves all #include code elements of the current solution and displays their content in a message box.
Sub GetAllIncludes()
Dim vcCM As VCCodeModel
Dim vcInclude As VCCodeInclude
vcCM = DTE.Solution.Item(1).CodeModel
For Each vcInclude in vcCM.Includes
MsgBox(vcInclude.DisplayName)
Next
End Sub