Click or drag to resize

ThumbnailViewAfterLabelEdit Event

Occurs when the label for an item is edited by the user.

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 event LabelEditEventHandler AfterLabelEdit

Value

Type: System.Windows.FormsLabelEditEventHandler
Remarks

The AfterLabelEdit event occurs when the user finishes modifying the text for an item. The new string that the user types for the item is passed to the event, and the event handler can reject the change. If the event handler rejects the change, the text reverts to the text as it was before the user began editing the item. In order for the AfterLabelEdit event to be raised, the LabelEdit property of the ThumbnailView control must be set to true. You can create an event handler for the BeforeLabelEdit event to perform tasks before the user edits the text of an item.

See Also