VCFileCodeModel.AddIDLLibrary(String, Object) 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 new library statement to the .idl file of the VCFileCodeModel object.
Microsoft::VisualStudio::VCCodeModel::VCCodeIDLLibrary AddIDLLibrary(std::wstring const & Name, winrt::Windows::Foundation::IInspectable const & Position);
[System.Runtime.InteropServices.DispId(571)]
public Microsoft.VisualStudio.VCCodeModel.VCCodeIDLLibrary AddIDLLibrary (string Name, object Position);
[<System.Runtime.InteropServices.DispId(571)>]
abstract member AddIDLLibrary : string * obj -> Microsoft.VisualStudio.VCCodeModel.VCCodeIDLLibrary
Public Function AddIDLLibrary (Name As String, Optional Position As Object) As VCCodeIDLLibrary
Parameters
- Name
- String
Required. Specifies the name of the new library.
- Position
- Object
Optional. 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.
Returns
A VCCodeIDLLibrary object.
- Attributes
Examples
This example adds a library statement to the .idl file of vcFile
.
Sub AddIDLLibrary()
Dim vcFile as VCFileCodeModel
vcFile = DTE.Solution.Item(1).ProjectItems.Item(1).FileCodeModel
vcFile.AddIDLLibrary("MyLibrary")
End Sub
Remarks
Call this function to insert a library
statement into the.idl file of 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.