D
Deleted member 103
Guest
from the online-help "ListView.chm":
B4X:
Gets or sets whether the checkbox left of a row in a ListView object is checked.
Syntax: CheckedRow (RowNumber As Int32) As Boolean
Examples:
lv.CheckedRow(0) = True 'Checks the checkbox of the first row in the ListView object.
If lv.CheckedRow(0) = True Then
...
End If