 | CAEXSequenceTICAEXSequenceInsert Method |
Inserts the specified CAEX object into this sequence. If no position is specified the element is appended.
If 'asFirst' is set to true, the element is prepended to already existing ones.
Namespace: Aml.Engine.CAEXAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxvoid ICAEXSequence.Insert(
ICAEXWrapper caexObject,
bool asFirst
)
Private Sub Insert (
caexObject As ICAEXWrapper,
asFirst As Boolean
) Implements ICAEXSequence.Insert
private:
virtual void Insert(
ICAEXWrapper^ caexObject,
bool asFirst
) sealed = ICAEXSequence::Insert
Parameters
- caexObject ICAEXWrapper
- the CAEX object
- asFirst Boolean
-
optional parameter, if set to true (default) the object is prepended to already existing ones,
otherwise it is appended.
Implements
ICAEXSequenceInsert(ICAEXWrapper, Boolean)
See Also