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 #import 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("17730D54-271F-11D7-8BF6-00B0D03DAA06")> _
Public Interface VCCodeImport
'Usage
Dim instance As VCCodeImport
[GuidAttribute("17730D54-271F-11D7-8BF6-00B0D03DAA06")]
public interface VCCodeImport
[GuidAttribute(L"17730D54-271F-11D7-8BF6-00B0D03DAA06")]
public interface class VCCodeImport
public interface VCCodeImport
Remarks
The VCCodeImport object represents a #import 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 the first VCCodeImport object of the current solution and displays it in a message box. It assumes that a C++ project containing a #import statement is open.
Sub GetFirstImport()
Dim vcCM As VCCodeModel
Dim vcImport As VCCodeImport
vcCM = DTE.Solution.Item(1).CodeModel
vcImport = vcCM.Imports.Item(1)
MsgBox(vcImport.DisplayName)
End Sub