Click or drag to resize

CAEXSequenceTICAEXSequenceAppend(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 ICAEXSequence.Append(
	params (string , Object )[] attributeValueTuples
)

Parameters

attributeValueTuples  ValueTupleString, Object
The attribute value tuples.

Return Value

ICAEXWrapper
the created CAEX object.

Implements

ICAEXSequenceAppend(ValueTupleString, 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