How can I scroll the rows of a TableView?
I do not know how to scroll on TableView.
I do not know how to scroll on TableView.
I tried to make a scroll like that I do not know if it is correctYou can use TableView.ScrollTo.
For I= 0 To NRighe -1
TbwRiepilogo.SelectedRow = I
Dim Row() As Object = TbwRiepilogo.SelectedRowValues
CodCli = Row(3)
Next
But if you do not select how do I get the value of the Row()?Calling ScrollTo will not affect the selected row.
TbwRiepilogo.ScrollTo (I)
Dim Row() As Object = TbwRiepilogo.SelectedRowValues '????
My probelm is scroll the TableView to read the value.Can you not do a scroll to +10 or something, so effectively paginate? or -10 if the swipe is the other way?
Start at zero or page length?
For I= 0 To NRighe -1
TbwRiepilogo.SelectedRow(I)
Dim Row() As Object = TbwRiepilogo.SelectedRowValues
CodCli = Row(3)
Next
B4X:For I= 0 To NRighe -1 TbwRiepilogo.SelectedRow(I) Dim Row() As Object = TbwRiepilogo.SelectedRowValues CodCli = Row(3) Next
I can do this without selected row ()?
For i = 0 To TbwRiepilogo.Items.Size - 1
TbwRiepilogo.SelectedRow = i
Dim Row() As Object = TbwRiepilogo.SelectedRowValues
Log(Row(0))
Next