TTraceList.Add Method

Overload List

#SignatureDescription
1function Add: Integer;Add a new TTraceItem object to the list.
2function Add(Item: TTraceItem): Integer;Add a new TTraceItem object to the list.
3procedure Add(Src: TTraceList);Add new TTraceItem object to the list, by copying them for the Src TTraceList.

Overload 1: function Add: Integer;

Add a new TTraceItem object to the list.

Returns: Int32

Remarks:

The function returns the the index at which the new object has been added.

Overload 2: function Add(Item: TTraceItem): Integer;

Add a new TTraceItem object to the list.

#NameTypeDescription
1ItemTTraceItem

Returns: Int32

Remarks:

Thefunction returns the the index at which the new object has been added.

Overload 3: procedure Add(Src: TTraceList);

Add new TTraceItem object to the list, by copying them for the Src TTraceList.

#NameTypeDescription
1SrcTTraceList

Result: stored in self (calling object)