VCCodeModel.AddUsing Method
Adds a #using element to a specific file.
Namespace: Microsoft.VisualStudio.VCCodeModel
Assembly: Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
Syntax
'Declaration
Function AddUsing ( _
Name As String, _
Location As Object, _
Position As Object _
) As VCCodeUsing
VCCodeUsing AddUsing(
string Name,
Object Location,
Object Position
)
VCCodeUsing^ AddUsing(
String^ Name,
Object^ Location,
Object^ Position
)
abstract AddUsing :
Name:string *
Location:Object *
Position:Object -> VCCodeUsing
function AddUsing(
Name : String,
Location : Object,
Position : Object
) : VCCodeUsing
Parameters
Name
Type: StringRequired. Specifies the name of the assembly being imported.
Location
Type: ObjectRequired. The path or file name of the file to be modified. If the file does not exist, it is created automatically. The file is added to the project if it is not already a project item. If the file cannot be created and added to the project, then AddUsing fails.
Position
Type: 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.
Since 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.
Return Value
Type: Microsoft.VisualStudio.VCCodeModel.VCCodeUsing
A VCCodeUsing object.
Remarks
Call this function to import metadata into the VCCodeModel object.
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 adds a #using statement to the stdafx.h file.
Sub AddUsing()
Dim codeModel As VCCodeModel
codeModel = DTE.Solution.Item(1).CodeModel
Dim using As VCCodeUsing
using = codeModel.AddUsing("<MyDll.dll>", "stdafx.h")
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.