Click or drag to resize

ThumbnailViewFocusedItem Property

Gets the Thumbnail item that currently has focus.

Namespace:  Atalasoft.Imaging.WinControls
Assembly:  Atalasoft.dotImage.WinControls (in Atalasoft.dotImage.WinControls.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public Thumbnail FocusedItem { get; }

Property Value

Type: Thumbnail
The item that has focus.
Examples
// Move the selected thumbnail to the top.
if (this.thumbnailView1.FocusedItem != null)
    this.thumbnailView1.Items.Move(this.thumbnailView1.FocusedItem, 0);
See Also