Share via


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

  • Position
    Type: System.Object
    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 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.String
    Optional. Used to give the namespace a different display name.

Return Value

Type: EnvDTE80.CodeImport
A CodeImport object.

.NET Framework Security

See Also

Reference

FileCodeModel2 Interface

EnvDTE80 Namespace