DevListViewItemCollectionInsert(Int32, String) Method
Creates a new item and inserts it into 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
)
Public Overridable Function Insert (
index As Integer,
text As String
) As ListViewItem
Dim instance As DevListViewItemCollection
Dim index As Integer
Dim text As String
Dim returnValue As ListViewItem
returnValue = instance.Insert(index, text)
public:
virtual ListViewItem^ Insert(
int index,
String^ text
)
abstract Insert :
index : int *
text : string -> ListViewItem
override Insert :
index : int *
text : 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 to display for the item.
ListViewItem
The
ListViewItem that was inserted into the collection.