VCFileCodeModel.AddImport_2 - метод
Adds a #import element to the VCFileCodeModel object.
Пространство имен: Microsoft.VisualStudio.VCCodeModel
Сборка: Microsoft.VisualStudio.VCCodeModel (в Microsoft.VisualStudio.VCCodeModel.dll)
Синтаксис
'Декларация
Function AddImport_2 ( _
Name As String, _
Position As Object, _
Attributes As String _
) As VCCodeImport
'Применение
Dim instance As VCFileCodeModel
Dim Name As String
Dim Position As Object
Dim Attributes As String
Dim returnValue As VCCodeImport
returnValue = instance.AddImport_2(Name, _
Position, Attributes)
VCCodeImport AddImport_2(
string Name,
Object Position,
string Attributes
)
VCCodeImport^ AddImport_2(
String^ Name,
Object^ Position,
String^ Attributes
)
function AddImport_2(
Name : String,
Position : Object,
Attributes : String
) : VCCodeImport
Параметры
Name
Тип: System.StringRequired. Specifies the name (in quotes or between angle brackets <>) of the type library being imported.
Position
Тип: System.ObjectRequired. 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
Тип: System.StringOptional. 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.
Возвращаемое значение
Тип: Microsoft.VisualStudio.VCCodeModel.VCCodeImport
A CodeImport object.
Заметки
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.
Примеры
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
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.