Inserts an item into a ListBox, DropDownListBox, ListView, or TreeView control.
To insert an item into a |
Use |
---|---|
ListBox or DropDownListBox control |
|
PictureListBox or DropDownPictureListBox control |
|
ListView control when only the label and picture index need to be specified |
|
ListView control when more than the label and picture index need to be specified |
|
TreeView control when only the label and picture index need to be specified |
|
TreeView control when more than the label and picture index need to be specified |
Inserts an item into the list of values in a list box.
ListBox and DropDownListBox controls
listboxname.InsertItem ( item, index )
Argument |
Description |
---|---|
listboxname |
The name of the ListBox or DropDownListBox into which you want to insert an item |
item |
A string whose value is the text of the item you want to insert |
index |
The number of the item in the list before which you want to insert the item |
Integer. Returns the final position of the item. Returns -1 if an error occurs. If any argument’s value is null, InsertItem returns null.
InsertItem inserts the new item before the item identified by index. If the items in listboxname are sorted (its Sorted property is true), PowerBuilder resorts the items after the new item is inserted. The return value reflects the new item’s final position in the list.
AddItem and InsertItem do not update the Items property array. You can use FindItem to find items added at runtime.
This statement inserts the item Run Application before the fifth item in lb_actions:
lb_actions.InsertItem("Run Application", 5)
If the Sorted property is false, the statement above returns 5 (the previous item 5 becomes item 6). If the Sorted property is true, the list is sorted after the item is inserted and the function returns the index of the final position of the item.
If the ListBox lb_Cities has the following items in its list and its Sorted property is set to true, then the following example inserts Denver at the top, sorts the list, and sets li_pos to 4. If the ListBox’s Sorted property is false, then the statement inserts Denver at the top of the list and sets li_pos to 1. The list is:
Albany
Boston
Chicago
New York
The example code is:
string ls_City = "Denver"
integer li_pos
li_pos = lb_Cities.InsertItem(ls_City, 1)
Inserts an item into the list of values in a picture list box.
PictureListBox and DropDownPictureListBox controls
listboxname.InsertItem ( item {, pictureindex }, index )
Argument |
Description |
---|---|
listboxname |
The name of the PictureListBox or DropDownPictureListBox into which you want to insert an item |
item |
A string whose value is the text of the item you want to insert |
pictureindex (optional) |
An integer specifying the index of the picture you want to associate with the newly added item |
index |
The number of the item in the list before which you want to insert the item |
Integer. Returns the final position of the item. Returns -1 if an error occurs. If any argument’s value is null, InsertItem returns null.
If you do not specify a picture index, the newly added item will not have a picture.
If you specify a picture index that does not exist, that number is still stored with the picture. If you add pictures to the picture array so that the index becomes valid, the item will then show the corresponding picture.
For additional notes about items in ListBoxes and examples of how the Sorted property affects the item order, see Syntax 1.
This statement inserts the item Run Application before the fifth item in lb_actions. The item has no picture assigned to it:
plb_actions.InsertItem("Run Application", 5)
This statement inserts the item Run Application before the fifth item in lb_actions and assigns it picture index 4:
plb_actions.InsertItem("Run Application", 4, 5)
Inserts an item into a ListView control.
ListView controls
listviewname.InsertItem ( index, label, pictureindex )
Argument |
Description |
---|---|
listviewname |
The name of the ListView control to which you are adding an item |
index |
An integer whose value is the index number of the item before which you are inserting a new item |
label |
A string whose value is the name of the item you are adding |
pictureindex |
An integer whose value is the index number of the picture of the item you are adding |
Integer. Returns index if it succeeds and -1 if an error occurs.
If you need to set more than the label and picture index, use Syntax 4.
This example inserts an item in the ListView in position 11:
lv_list.InsertItem(11 , "Presentation" , 1)
Inserts an item into a ListView control.
ListView controls
listviewname.InsertItem ( index, item )
Argument |
Description |
---|---|
listviewname |
The name of the ListView control into which you are inserting an item |
index |
An integer whose value is the index number of the item you are adding |
item |
A system structure of datatype ListViewItem in which InsertItem stores the item you are inserting |
Integer. Returns index if it succeeds and -1 if an error occurs.
The index you specify is the position of the item you are adding to a ListView.
If you need to insert just the label and picture index into the ListView control, use Syntax 3.
This example moves a ListView item from the second position into the fifth position. It uses GetItem to retrieve the state information from item 2, inserts it into the ListView control as item 5, and then deletes the original item:
listviewitem l_lvi
lv_list.GetItem(2 , l_lvi)
lv_list.InsertItem(5 , l_lvi)
lv_list.DeleteItem(2)
Inserts an item at a specific level and order in a TreeView control.
TreeView controls
treeviewname.InsertItem ( handleparent, handleafter, label, pictureindex )
Argument |
Description |
---|---|
treeviewname |
The name of the TreeView control in which you want to insert an item. |
handleparent |
The handle of the item one level above the item you want to insert. To insert an item at the first level, specify 0. |
handleafter |
The handle of the item on the same level that you will insert the item immediately after. |
label |
The label of the item you are inserting. |
pictureindex |
The Index of the index of the picture you are adding to the image list. |
Long. Returns the handle of the inserted item if it succeeds and -1 if an error occurs.
Use this syntax to set just the label and picture index. Use the next syntax if you need to set additional properties for the item.
If the TreeView’s SortType property is set to a value other than Unsorted!, the inserted item is sorted with its siblings.
If you are inserting the first child of an item, use InsertItemLast or InsertItemFirst instead. Those functions do not require a handleafter value.
This example inserts a TreeView item that is on the same level as the current TreeView item. It uses FindItem to get the current item and its parent, then inserts the new item beneath the parent item:
long ll_tvi, ll_tvparent
ll_tvi = tv_list.FindItem(currenttreeitem! , 0)
ll_tvparent = tv_list.FindItem(parenttreeitem!,ll_tvi)
tv_list.InsertItem(ll_tvparent,ll_tvi,"Hindemith", 2)
Inserts an item at a specific level and order in a TreeView control.
TreeView controls
treeviewname.InsertItem ( handleparent, handleafter, item )
Argument |
Description |
---|---|
treeviewname |
The name of the TreeView control into which you want to insert an item. |
handleparent |
The handle of the item one level above the item you want to insert. To insert an item at the first level, specify 0. |
handleafter |
The handle of the item on the same level that you will insert the item immediately after. |
item |
A TreeViewItem structure for the item you are inserting. |
Long. Returns the handle of the item inserted if it succeeds and -1 if an error occurs.
Use the previous syntax to set just the label and picture index. Use this syntax if you need to set additional properties for the item.
If the TreeView’s SortType property is set to a value other than Unsorted!, the inserted item is sorted with its siblings.
If you are inserting the first child of an item, use InsertItemLast or InsertItemFirst instead. Those functions do not require a handleafter value.
This example inserts a TreeView item that is on the same level as the current TreeView item. It uses FindItem to get the current item and its parent, then inserts the new item beneath the parent item:
long ll_tvi, ll_tvparent
treeviewitem l_tvi
ll_tvi = tv_list.FindItem(currenttreeitem! , 0)
ll_tvparent = tv_list.FindItem(parenttreeitem!,ll_tvi)
tv_list.GetItem(ll_tvi , l_tvi)
tv_list.InsertItem(ll_tvparent,ll_tvi, l_tvi)