This class represents a storage for ListColumn objects of the ThumbnailListView control.
Namespace:
Aurigma.GraphicsMill.WinControls
Assembly:
Aurigma.GraphicsMill.WinControls (in Aurigma.GraphicsMill.WinControls.dll)
<DefaultMemberAttribute("Item")> _ Public Class ListColumnCollection _ Inherits CollectionBase _ Implements IList, ICollection, IEnumerable
[DefaultMemberAttribute("Item")] public class ListColumnCollection : CollectionBase, IList, ICollection, IEnumerable
When you display items in the Details view mode, each item is displayed as a row in a table. Each column display a piece of information about the item. For example, if you display a file list, you can use three columns: name, type, and size.
If you are going to use the Details view, you should should create required number of ListColumn class instances and add them with the Add(ListColumn) method. Later you can remove them with the Remove(ListColumn) method, or insert the column to certain position (see the Insert(Int32, ListColumn) method). If you need to re-initialize columns, you can remove all of them with the Clear() method and add them once again.