In This Article

ImportStatement Class

Represents an import statement.

public class ImportStatement : Statement, IAstNode
Inheritance:
System.Object AstNodeBase Statement Object
Implements:
IAstNode

Remarks

This type was generated by the Actipro Language Designer tool v14.2.610.0 (http://www.actiprosoftware.com).

Constructors

ImportStatement()

public ImportStatement()

Properties

HasModuleNames

Returns whether the ModuleNames collection property contains at least one item.

public bool HasModuleNames { get; }

Property Value

System.Boolean:

true if there is at least one item in the collection; otherwise, false.

Id

Gets the An integer value that identifies the type of AST node.

public override int Id { get; }

Property Value

System.Int32:

The An integer value that identifies the type of AST node.

ModuleNames

Gets the module names.

public IList<BoundName> ModuleNames { get; }

Property Value

System.Collections.Generic.IList<BoundName>:

The module names.

Methods

GetChildrenEnumerator()

Retrieves an IEnumerator object that can iterate the child IAstNode objects in this node.

protected override IEnumerator<IAstNode> GetChildrenEnumerator()

Returns

System.Collections.Generic.IEnumerator<IAstNode>:

An IEnumerator object that can iterate the child IAstNode objects in this node.

Inherited Members