VCFileCodeModel.AddIDLLibrary - метод
Adds a new library statement to the .idl file of the VCFileCodeModel object.
Пространство имен: Microsoft.VisualStudio.VCCodeModel
Сборка: Microsoft.VisualStudio.VCCodeModel (в Microsoft.VisualStudio.VCCodeModel.dll)
Синтаксис
'Декларация
Function AddIDLLibrary ( _
Name As String, _
Position As Object _
) As VCCodeIDLLibrary
'Применение
Dim instance As VCFileCodeModel
Dim Name As String
Dim Position As Object
Dim returnValue As VCCodeIDLLibrary
returnValue = instance.AddIDLLibrary(Name, _
Position)
VCCodeIDLLibrary AddIDLLibrary(
string Name,
Object Position
)
VCCodeIDLLibrary^ AddIDLLibrary(
String^ Name,
Object^ Position
)
function AddIDLLibrary(
Name : String,
Position : Object
) : VCCodeIDLLibrary
Параметры
Name
Тип: System.StringRequired. Specifies the name of the new library.
Position
Тип: System.ObjectOptional. 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.
Возвращаемое значение
Тип: Microsoft.VisualStudio.VCCodeModel.VCCodeIDLLibrary
A VCCodeIDLLibrary object.
Заметки
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.
Примеры
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
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.