Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
HeartWare
Posted - Sep 16 2023 : 02:51:27 Is it possible to, programmatically, select/unselect individual thumbnails in multi-select mode?
If so, how (and what other options must be set in order to do this)?
1 L A T E S T R E P L I E S (Newest First)
xequte
Posted - Sep 17 2023 : 22:56:56 Hi
You can do it as follows:
// select the first 100 images
ImageEnMView1.BeginSelectImages();
for i := 0 to 99 do
ImageEnMView1.SelectedImage := i;
ImageEnMView1.EndSelectImages();