Click or drag to resize

ICAEXSequenceAppend(ValueTupleString, Object) Method

Creates a new CAEX object and appends it to already existing elements. The content of the new element can be optionally defined using an array of tuples defining attribute names and their values.

Namespace: Aml.Engine.CAEX
Assembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax
ICAEXWrapper Append(
	params (string , Object )[] attributeValueTuples
)

Parameters

attributeValueTuples  ValueTupleString, Object
The attribute value tuples.

Return Value

ICAEXWrapper
the created CAEX object.
Example
This sample shows how to apply this method:
C#
var doc = CAEXDocument.New();
var at =  doc.CAEXFile.AttributeTypeLib.Append (new Tuple <string,object>[] { Tuple.Create<string,object>("Name", "ALIB") });
See Also