FileCodeModel2.AddImport Method
Creates a new code import statement and inserts the code in the correct location.
Namespace: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Syntax
'Declaration
Function AddImport ( _
Name As String, _
Position As Object, _
Alias As String _
) As CodeImport
CodeImport AddImport(
string Name,
Object Position,
string Alias
)
CodeImport^ AddImport(
String^ Name,
[InAttribute] Object^ Position,
[InAttribute] String^ Alias
)
abstract AddImport :
Name:string *
Position:Object *
Alias:string -> CodeImport
function AddImport(
Name : String,
Position : Object,
Alias : String
) : CodeImport
Parameters
Name
Type: System.StringThe name of the new import element.
Position
Type: System.ObjectDefault = 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 1, 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.
Alias
Type: System.StringOptional. Used to give the namespace a different display name.
Return Value
Type: EnvDTE80.CodeImport
A CodeImport object.
.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.