When I use the treeListView cellClick Event:
private void treeListView_CellClick(object sender, BrightIdeasSoftware.CellClickEventArgs e)
Using "CellClickEventArgs e", how can I find the current value (lets assume it is an Int32) of this specific cell?
Found the answer:
I assume that
CellClickEventArgs
contains property that indicateIndex
of cell. Try to get it and then grab cell fromtreeListView
by index.