FileCodeModel2.AddImport(String, Object, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new code import statement and inserts the code in the correct location.
EnvDTE80::CodeImport AddImport(std::wstring const & Name, winrt::Windows::Foundation::IInspectable const & Position, std::wstring const & Alias = "");
[System.Runtime.InteropServices.DispId(202)]
public EnvDTE80.CodeImport AddImport (string Name, object Position, string Alias = "");
[<System.Runtime.InteropServices.DispId(202)>]
abstract member AddImport : string * obj * string -> EnvDTE80.CodeImport
Public Function AddImport (Name As String, Optional Position As Object, Optional Alias As String = "") As CodeImport
Parameters
- Name
- String
The name of the new import element.
- Position
- 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
- String
Optional. Used to give the namespace a different display name.
Returns
A CodeImport object.
- Attributes