Sub ChangeItemPanelHeight(clv As CustomListView, Index As Int, DeltaHeight As Int)
Private i As Int
Private pnl1, pnl2 As Panel
Private sv As ScrollView
sv = clv.AsView 'gets the CustoListViews' ScrollView
pnl1 = sv.Panel 'gets the ScrollView.Panel
pnl2 = pnl1.GetView(Index) 'gets the item Panel with the given Index
pnl2.Height = pnl2.Height + DeltaHeight 'changes the item Panel height
For i = Index + 1 To pnl1.NumberOfViews -1 'changes the Top property of all the Panels above the index Panel
Private pnl As Panel
pnl = pnl1.GetView(i)
pnl.Top = pnl.Top + DeltaHeight
Next
sv.Panel.Height = sv.Panel.Height + DeltaHeight 'changes the ScrollView.Panel.Height
End Sub