DevListViewItemCollectionInsert(Int32, String, String) Method
Creates a new item with the specified text and image and inserts it in the collection at the specified index.
Namespace: DevCase.UI.Layout.DevListViewDataAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public virtual ListViewItem Insert(
int index,
string text,
string imageKey
)
Public Overridable Function Insert (
index As Integer,
text As String,
imageKey As String
) As ListViewItem
Dim instance As DevListViewItemCollection
Dim index As Integer
Dim text As String
Dim imageKey As String
Dim returnValue As ListViewItem
returnValue = instance.Insert(index, text,
imageKey)
public:
virtual ListViewItem^ Insert(
int index,
String^ text,
String^ imageKey
)
abstract Insert :
index : int *
text : string *
imageKey : string -> ListViewItem
override Insert :
index : int *
text : string *
imageKey : string -> ListViewItem
No code example is currently available or this language may not be supported.
- index Int32
-
The zero-based index location where the item is inserted.
- text String
-
The text of the ListViewItem.
- imageKey String
-
The key of the image to display for the item.
ListViewItem
The
ListViewItem added to the collection.