This documentation is for the old version. Go to the latest Graphics Mill docs

ListColumnCollection Class

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)

Syntax

Visual Basic
<DefaultMemberAttribute("Item")> _
Public Class ListColumnCollection _
	Inherits CollectionBase _
	Implements IList, ICollection, IEnumerable
C#
[DefaultMemberAttribute("Item")]
public class ListColumnCollection : CollectionBase, IList, ICollection, 
	IEnumerable

Remarks

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.

Inheritance Hierarchy

System.Object
L System.Collections.CollectionBase
L Aurigma.GraphicsMill.WinControls.ListColumnCollection

Thread Safety

Static members of this type are safe for multi-threaded operations. Instance members of this type are not safe for multi-threaded operations.

Object Model





See Also

Reference