Insert new entries into a list.
Source position: MUIClass.List.pas line 93
public procedure TMUIList.Insert( |
Entries: PPChar; |
Count: Integer; |
Pos: Integer |
); |
Entries |
|
pointer to an array of pointers to be inserted. Warning: This is a pointer to a pointer. |
Count |
|
Number of elements to be inserted. If count=-1, entries will be inserted until nil pointer in the entries array is found. |
Pos |
|
New entries will be added in front of this entry. MUIV_List_Insert_* |
When the list has a OnConstruct Event, the given pointers won't be inserted directly but instead passed through to the construct Event.
Special Position Values:
|
Constrcut a new List Entry |