IContentItemVersionAddElementAfter Method
|
Adds one or more elements to the
Elements collection after the specified anchor element.
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntaxvoid AddElementAfter(
IElement anchor,
params IElement[] element
)
Sub AddElementAfter (
anchor As IElement,
ParamArray element As IElement()
)
void AddElementAfter(
IElement^ anchor,
... array<IElement^>^ element
)
abstract AddElementAfter :
anchor : IElement *
element : IElement[] -> unit Parameters
- anchor IElement
- The anchor element after which the element(s) are inserted
- element IElement
- 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. |
RemarksThe elements added to the collection become direct children of the version.
The new child elements are added the elements collection, behind the the anchor element.
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