Declaration
procedure Deselect(Index: Integer = -1);
Description
Remove selection from one or all images.
Index can -1 to deselect all images, or specified index to deselect a single image (if multiselection is enabled).
// Deselect all images
ImageEnMView1.Deselect();
// Deselect the third image
ImageEnMView1.Deselect( 2 );