ListView.InsertItem Method | |
Insert a new ListViewItem object after a particular item index in the list view.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD InsertItem(
oListViewItem,
nInsertAfter
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual InsertItem(
Usual oListViewItem = default,
Usual nInsertAfter = default
)
Request Example
View SourceParameters
- oListViewItem (Optional)
- Type: Usual
The ListViewItem object to insert in the list view. - nInsertAfter (Optional)
- Type: Usual
The position after which to insert the new item. If omitted, the new item is added as the last item.
Return Value
Type:
Usual
TRUE if the item was inserted successfully; otherwise, FALSE.
See Also