Interface INode
Interface to be implemented by node types to be accessed by functionality in Fusee.Xene.
Namespace: Fusee.Xene
Assembly: Fusee.Xene.dll
Syntax
public interface INode
Properties
EnumChildren
Retrieves the child nodes of this instance.
Declaration
IEnumerable<INode> EnumChildren { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<INode> | The child nodes. |
EnumComponents
Retrieves the components making up this node.
Declaration
IEnumerable<IComponent> EnumComponents { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IComponent> | The components. |