In This Article

Argument Class

Represents an argument.

public class Argument : AstNodeBase, IAstNode
Inheritance:
object AstNodeBase object
Implements:
IAstNode

Remarks

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

Constructors

Argument()

Initializes a new instance of the Argument class.

public Argument()

Argument(Expression)

Initializes a new instance of the Argument class.

public Argument(Expression expression)
Parameter Type Description
expression Expression

The expression.

Properties

Expression

Gets or sets the expression.

public Expression Expression { get; set; }

Property Value

Expression:

The expression.

Id

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

public override int Id { get; }

Property Value

int:

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

Modifiers

Gets or sets the modifiers.

public ParameterModifiers Modifiers { get; set; }

Property Value

ParameterModifiers:

The modifiers.

Name

Gets or sets the name.

public string Name { get; set; }

Property Value

string:

The name.

Methods

GetChildrenEnumerator()

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

protected override IEnumerator<IAstNode> GetChildrenEnumerator()

Returns

IEnumerator<IAstNode>:

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

Inherited Members