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

IListItem.Parent Property

Gets/sets a parent ThumbnailListView control of this item.

Namespace: Aurigma.GraphicsMill.WinControls
Assembly: Aurigma.GraphicsMill.WinControls (in Aurigma.GraphicsMill.WinControls.dll)

Syntax

Visual Basic
Property Parent As ThumbnailListView
C#
                ThumbnailListView Parent { get; set; }

Property Value

ThumbnailListView which is an owner of this item. If null, the item has no parent yet.

Remarks

Internal architecture of the ThumbnailListView control requires all list item objects to belong not more than to to one control. Incorrect implementation of this property may lead to unpredictable results. You should not return null if the owner control is actually assigned.

Also, if it is necessary to dublicate the item into another ThumbnailListView control, you should clone list item rather than use a reference to it.

See Also

Reference