码迷,mamicode.com
首页 > 其他好文 > 详细

ListView删除选中的多项目

时间:2014-07-29 21:19:22      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:http   color   io   for   cti   div   ar   res   

//ListView删除选中的多项目
function DeleteMultSelItems(ListView:TListView):Boolean;
var
  I: Integer;
begin
  Result:=False;
  if ListView.Selected =nil then Exit;
  for i := ListView.items.count-1 downto  0 do
  begin
    if ListView.items[i].selected then
      begin
        ListView.items[i].Delete;
        Result:=True;
      end;
  end;
end;




ListView删除选中的多项目,布布扣,bubuko.com

ListView删除选中的多项目

标签:http   color   io   for   cti   div   ar   res   

原文地址:http://www.cnblogs.com/xe2011/p/3876251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!