VCFileCodeModel.AddImport_2(String, Object, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a #import element to the VCFileCodeModel object.
Microsoft::VisualStudio::VCCodeModel::VCCodeImport AddImport_2(std::wstring const & Name, winrt::Windows::Foundation::IInspectable const & Position, std::wstring const & Attributes = "");
[System.Runtime.InteropServices.DispId(568)]
public Microsoft.VisualStudio.VCCodeModel.VCCodeImport AddImport_2 (string Name, object Position, string Attributes = "");
[<System.Runtime.InteropServices.DispId(568)>]
abstract member AddImport_2 : string * obj * string -> Microsoft.VisualStudio.VCCodeModel.VCCodeImport
Public Function AddImport_2 (Name As String, Optional Position As Object, Optional Attributes As String = "") As VCCodeImport
Parameters
- Name
- String
Required. Specifies the name (in quotes or between angle brackets <>) of the type library being imported.
- Position
- Object
Required. Default = 0. The code element after which to add the new element. If the value is a CodeElement, then the new element is added immediately after it.Because collections begin their count at one, passing 0 indicates that the new element should be placed at the beginning of the collection. A value of -1 means the element should be placed at the end.
- Attributes
- String
Optional. One or more #import attributes. For a complete list, see the #import Attributes section of The #import Directive. Separate attributes with either a space or comma.
Returns
A CodeImport object.
- Attributes
Examples
This example adds a #import
statement to the file represented by the vcFile
object.
Sub AddImport()
Dim vcFile as VCFileCodeModel
vcFile = DTE.Solution.Item(1).ProjectItems.Item(1).FileCodeModel
vcFile.AddImport_2("""MyDll.dll""", 0)
End Sub
Remarks
Call this function to insert a #import
element into the file represented by the VCFileCodeModel object.
See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.