 | CAEXSequenceTAppend(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
Syntaxpublic virtual T Append(
params (string , Object )[] attributeValueTuples
)
Public Overridable Function Append (
ParamArray attributeValueTuples As ( As String, As Object)()
) As T
public:
virtual T Append(
... array<ValueTuple<String^, Object^>>^ attributeValueTuples
)
Parameters
- attributeValueTuples ValueTupleString, Object
- The attribute value tuples.
Return Value
T
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