Click or drag to resize
IElement Interface
A modifiable AML element. This element could be an Item, property, result tag, or something else

Namespace: Innovator.Client
Assembly: Innovator.Client (in Innovator.Client.dll) Version: 2016.1.15.1759 (2016.01.15.1759)
Syntax
public interface IElement : IReadOnlyElement, 
	ICloneable, IAmlNode

The IElement type exposes the following members.

Properties
  NameDescription
Public propertyContext
Retrieve the context used for rendering primitive values
(Inherited from IReadOnlyElement.)
Public propertyExists
Returns true if this element actually exists in the underlying AML, otherwise, returns false to indicate that the element is just a null placeholder put in place to reduce unnecessary null reference checks
(Inherited from IReadOnlyElement.)
Public propertyName
Local XML name of the element
(Inherited from IReadOnlyElement.)
Public propertyParent
Retrieve the parent element
Public propertyValue
String value of the element
(Inherited from IReadOnlyElement.)
Top
Methods
  NameDescription
Public methodAdd(Object)
Add new content to the element
Public methodAdd(Object)
Add new content to the element
Public methodAttribute
Retrieve the attribute with the specified name
Public methodAttributes
Retrieve all attributes specified for the element
Public methodClone
Creates a new object that is a copy of the current instance.
(Inherited from ICloneable.)
Public methodElements
Retrieve all child elements
Public methodRemove
Remove the element from its parent
Public methodRemoveAttributes
Remove attributes from the element
Public methodRemoveNodes
Remove child nodes from the element
Public methodToAml
Render the node to a string
(Inherited from IAmlNode.)
Public methodToAml(XmlWriter)
Write the node to the specified XmlWriter
(Inherited from IAmlNode.)
Top
Extension Methods
  NameDescription
Public Extension MethodToXml
Renders an AML node to XML
(Defined by ItemExtensions.)
Top
See Also