ListViewExtrasGetListViewItemRowValuesAndColumnName Method |
returns a tuple of column header name, and the row value for this LVI
Namespace: ANDREICSLIB.ClassExtrasAssembly: ANDREICSLIB (in ANDREICSLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static List<Tuple<string, string>> GetListViewItemRowValuesAndColumnName(
ListView lv,
ListViewItem LVI,
string LVIField = "Text"
)
Public Shared Function GetListViewItemRowValuesAndColumnName (
lv As ListView,
LVI As ListViewItem,
Optional LVIField As String = "Text"
) As List(Of Tuple(Of String, String))
public:
static List<Tuple<String^, String^>^>^ GetListViewItemRowValuesAndColumnName(
ListView^ lv,
ListViewItem^ LVI,
String^ LVIField = L"Text"
)
static member GetListViewItemRowValuesAndColumnName :
lv : ListView *
LVI : ListViewItem *
?LVIField : string
(* Defaults:
let _LVIField = defaultArg LVIField "Text"
*)
-> List<Tuple<string, string>>
Parameters
- lv
- Type: System.Windows.FormsListView
- LVI
- Type: System.Windows.FormsListViewItem
- LVIField (Optional)
- Type: SystemString
Return Value
Type:
ListTupleString,
Stringcolumn header name,row value
See Also