[progress Communities] [progress Openedge Abl] Forum Post: Re: Ultralistview:items:clear()...

  • Thread starter Thread starter Laura Stern
  • Start date Start date
Status
Not open for further replies.
L

Laura Stern

Guest
Looked at the Infragistics code in the Items collection Clear() method. It is basically this. The first line in the loop would be the thing calling get_item(). This looks OK to me. int count = this.Count; for ( int i = count - 1; i >= 0; i-- ) { UltraListViewItem item = this; this.RemoveHelper(i, false); if ( dispose ) item.Dispose(); }

Continue reading...
 
Status
Not open for further replies.
Back
Top