 | 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.CAEXAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
SyntaxICAEXWrapper Append(
params (string , Object )[] attributeValueTuples
)
Function Append (
ParamArray attributeValueTuples As ( As String, As Object)()
) As ICAEXWrapper
ICAEXWrapper^ Append(
... array<ValueTuple<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:
var doc = CAEXDocument.New();
var at = doc.CAEXFile.AttributeTypeLib.Append (new Tuple <string,object>[] { Tuple.Create<string,object>("Name", "ALIB") });
See Also