IContentItemVersionAddElements Method
|
Adds a group of elements to the
Elements collection.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax void AddElements(
IEnumerable<IElement> elements
)
Sub AddElements (
elements As IEnumerable(Of IElement)
)
void AddElements(
IEnumerable<IElement^>^ elements
)
abstract AddElements :
elements : IEnumerable<IElement> -> unit
Parameters
- elements
- Type: System.Collections.GenericIEnumerableIElement
Elements to be added to the collection
Exceptions Exception | Condition |
---|
ArgumentException | When any element to add has the same unique ID as an existing element. |
Remarks The elements added to the collection become direct children of the version.
The new child elements are appended to the elements collection.
Any null items in the collection are ignored.
If any element to add has the same unique ID as an existing element, an error is thrown.
See Also