In This Article

Element Class

Represents an element.

public class Element : AstNodeBase, IAstNode
Inheritance:
Object AstNodeBase Object
Implements:
IAstNode

Remarks

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

Constructors

Element()

public Element()

Properties

Attributes

Gets the attributes.

public IList<ElementAttribute> Attributes { get; }

Property Value

IList<ElementAttribute>:

The attributes.

Content

Gets or sets the content.

public ElementContent Content { get; set; }

Property Value

ElementContent:

The content.

EndTag

Gets or sets the end tag.

public EndTag EndTag { get; set; }

Property Value

EndTag:

The end tag.

HasAttributes

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

public bool HasAttributes { get; }

Property Value

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

Int32:

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

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