Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Add: Integer; | Add a new TTraceItem object to the list. |
| 2 | function Add(Item: TTraceItem): Integer; | Add a new TTraceItem object to the list. |
| 3 | procedure 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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Item | TTraceItem |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TTraceList |
Result: stored in self (calling object)