FileCodeModel2::AddImport Method (String^, Object^, String^)

 

Creates a new code import statement and inserts the code in the correct location.

Namespace:   EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)

CodeImport^ AddImport(
	String^ Name,
	Object^ Position,
	String^ Alias = ""
)

Parameters

Name
Type: System::String^

The name of the new import element.

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.

Return to top
Show: