CodeImport Interface

Models the use of statements that import namespaces.

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

Syntax

'Declaration
<GuidAttribute("0C9A256E-0FF9-4D4A-88E6-304ACF78225F")> _
Public Interface CodeImport _
    Inherits CodeElement
[GuidAttribute("0C9A256E-0FF9-4D4A-88E6-304ACF78225F")]
public interface CodeImport : CodeElement
[GuidAttribute(L"0C9A256E-0FF9-4D4A-88E6-304ACF78225F")]
public interface class CodeImport : CodeElement
[<GuidAttribute("0C9A256E-0FF9-4D4A-88E6-304ACF78225F")>]
type CodeImport =  
    interface
        interface CodeElement
    end
public interface CodeImport extends CodeElement

The CodeImport type exposes the following members.

Properties

  Name Description
Public property Alias Gets or sets a friendly name for the referenced namespace.
Public property Children Gets a collection of objects contained within this CodeImport.
Public property Collection Gets the CodeElements collection containing the CodeImport that supports this property.
Public property DTE Gets the top-level extensibility object.
Public property EndPoint Gets the text point that is the location of the end of the code item.
Public property Extender Gets the requested Extender if it is available for this CodeElement object.
Public property ExtenderCATID Gets the Extender category ID (CATID) for the object.
Public property ExtenderNames Gets a list of available Extenders for the object.
Public property FullName Gets a fully-qualified name of the specified code element.
Public property InfoLocation Gets the capabilities of the code model.
Public property IsCodeType Gets a value indicating whether or not a CodeType object can be obtained from the CodeImport object.
Public property Kind Gets an enumeration that defines the type of object.
Public property Language Gets the programming language that is used to author the CodeImport.
Public property Name Gets or sets the name of the CodeImport object.
Public property Namespace Gets or sets the name of the imported namespace.
Public property Parent Gets the object containing this import.
Public property ProjectItem Gets the ProjectItem object associated with the CodeElement object.
Public property StartPoint Gets a TextPoint object that defines the beginning of the CodeImport.

Top

Methods

  Name Description
Public method GetEndPoint Gets a TextPoint object that marks the end of the code element definition.
Public method GetStartPoint Gets a TextPoint object that marks the beginning of the code element definition.

Top

Remarks

The import statement that is used depends on the language model that it targets. The object inherits from CodeElement.

Note

The values of code model elements such as classes, structs, functions, attributes, delegates, and so forth can be non-deterministic after making certain kinds of edits, meaning that their values cannot be relied upon to always remain the same. For more information, see the section Code Model Element Values Can Change in Discovering Code by Using the Code Model (Visual Basic).

See Also

Reference

EnvDTE80 Namespace

Other Resources

How to: Compile and Run the Automation Object Model Code Examples

Discovering Code by Using the Code Model (Visual Basic)

Discovering Code by Using the Code Model (Visual C#)